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