webpack.config.cjs 250 B

1234567891011121314
  1. const path = require('path');
  2. module.exports = {
  3. mode: 'production',
  4. entry: './src/index.js',
  5. output: {
  6. path: path.resolve(__dirname, 'dist'),
  7. filename: "main.js",
  8. library: {
  9. type: 'commonjs',
  10. },
  11. clean: true,
  12. },
  13. };