glitch-countdown/webpack.config.js

10 lines
165 B
JavaScript
Raw Normal View History

2023-10-29 21:18:28 +00:00
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
},
};