Co-authored-by: Thomas Trompette <thomas.trompette@sfr.fr> Co-authored-by: bosiraphael <raphael.bosi@gmail.com> Co-authored-by: Weiko <corentin@twenty.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions <github-actions@twenty.com> Co-authored-by: Charles Bochet <charles@twenty.com>
18 lines
357 B
JavaScript
18 lines
357 B
JavaScript
const rules = require('./webpack.rules');
|
|
|
|
rules.push({
|
|
test: /\.css$/,
|
|
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }],
|
|
});
|
|
|
|
module.exports = {
|
|
// Put your normal webpack config below here
|
|
module: {
|
|
rules,
|
|
},
|
|
entry: {
|
|
renderer: './src/renderer.js',
|
|
'note-editor/renderer': './src/pages/note-editor/renderer.js',
|
|
},
|
|
};
|