quizEngine/webpack.config.js

12 lines
217 B
JavaScript
Raw Normal View History

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