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