LANCommander/LANCommander.UI/webpack.config.js
2024-08-18 15:05:25 -05:00

10 lines
No EOL
342 B
JavaScript

const path = require('path');
module.exports = {
entry: './main.js', // Adjust the path if your index.js is located elsewhere
output: {
filename: 'bundle.js', // The output file
path: path.resolve(__dirname, 'dist'), // The output directory
},
mode: 'production', // Use 'production' for minified output
};