quizEngine/webpack.config.js
2021-07-04 19:56:18 +03:00

12 lines
234 B
JavaScript

const path = require('path');
module.exports = {
entry: './js/index.js',
context: path.resolve(__dirname, 'app'),
mode: 'development',
output: {
path: path.resolve(__dirname, 'app/dist'),
filename: 'game.js',
},
};