moner.ooo/webpack.config.js
2024-05-24 20:18:12 +05:30

12 lines
200 B
JavaScript

'use strict'
const path = require('path')
module.exports = {
mode: 'development',
entry: './src/js/main.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'js'),
},
}