green-spider/webapp/webpack.config.js

10 lines
165 B
JavaScript

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