a3web/front/webpack.config.js

10 lines
168 B
JavaScript

const path = require('path');
module.exports = {
entry: './index.js',
output: {
filename: 'index.js',
path: path.resolve(__dirname, '../static/'),
},
};