mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
const path = require('node:path');
|
|
|
|
const { injectCSS } = require('../utils');
|
|
|
|
module.exports = (win) => {
|
|
injectCSS(win.webContents, path.join(__dirname, 'empty-player.css'));
|
|
};
|