mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-10-31 22:27:21 +00: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$/
|
|
},
|
|
],
|
|
}
|
|
};
|