1
0
Fork 0
mirror of https://codeberg.org/fediverse/fediparty.git synced 2025-03-12 10:43:50 +00:00
fediparty/themes/starter/webpack.config.js

20 lines
313 B
JavaScript
Raw Normal View History

2018-07-05 07:07:30 +03:00
const UglifyJsPlugin = require('../../node_modules/uglifyjs-webpack-plugin');
module.exports = {
2019-01-15 02:01:54 +03:00
mode: 'production',
entry: {
main: './source/assets/scripts/crystalball'
},
output: {
2018-07-05 07:07:30 +03:00
filename: 'ball.min.js',
},
module: {
rules: [
{
test: /\.js$/
},
],
2018-07-05 07:07:30 +03:00
}
};