1
0
mirror of https://git.feneas.org/feneas/fediverse.git synced 2025-01-02 18:26:33 +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$/
},
],
}
};