pastebin/webpack.config.js

16 lines
242 B
JavaScript
Raw Normal View History

2019-09-20 14:00:28 +00:00
module.exports = {
entry: './js/index',
output: {
filename: 'static/js/index.js',
path: __dirname,
},
2019-10-09 10:23:25 +00:00
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
],
},
2019-09-20 14:00:28 +00:00
}