guida-fediverso/themes/starter/webpack.config.js

18 lines
234 B
JavaScript
Raw Permalink Normal View History

module.exports = {
2019-01-15 00:01:54 +01:00
mode: 'production',
entry: {
main: './source/assets/scripts/crystalball'
},
output: {
2018-07-05 06:07:30 +02:00
filename: 'ball.min.js',
},
module: {
rules: [
{
test: /\.js$/
},
],
2018-07-05 06:07:30 +02:00
}
};