mirror of
https://git.feneas.org/feneas/fediverse.git
synced 2024-12-22 11:53:52 +01:00
18 lines
234 B
JavaScript
18 lines
234 B
JavaScript
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: {
|
|
main: './source/assets/scripts/crystalball'
|
|
},
|
|
output: {
|
|
filename: 'ball.min.js',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/
|
|
},
|
|
],
|
|
}
|
|
};
|