1
0
mirror of https://git.feneas.org/feneas/fediverse.git synced 2024-12-22 11:53:52 +01:00
guida-fediverso/themes/starter/webpack.config.js

18 lines
234 B
JavaScript

module.exports = {
mode: 'production',
entry: {
main: './source/assets/scripts/crystalball'
},
output: {
filename: 'ball.min.js',
},
module: {
rules: [
{
test: /\.js$/
},
],
}
};