kirby-moin/webpack.config.js

11 lines
194 B
JavaScript
Raw Permalink Normal View History

const path = require('path');
module.exports = {
entry: './src/js/index.js',
mode: "production",
output: {
filename: 'app.js',
path: path.resolve(__dirname, 'public/js'),
},
};