quizEngine/webpack.config.js

12 lines
234 B
JavaScript
Raw Normal View History

2021-07-04 18:07:44 +03:00
const path = require('path');
module.exports = {
entry: './js/index.js',
2021-07-04 19:56:18 +03:00
context: path.resolve(__dirname, 'app'),
2021-07-04 18:07:44 +03:00
mode: 'development',
output: {
2021-07-04 19:56:18 +03:00
path: path.resolve(__dirname, 'app/dist'),
2021-07-04 18:07:44 +03:00
filename: 'game.js',
},
};