webpack.config.js 174 B

123456789
  1. const path = require('path');
  2. module.exports = {
  3. entry: './dist/index.js',
  4. output: {
  5. path: path.resolve(process.cwd(), './dist/'),
  6. filename: 'bundle.js',
  7. },
  8. };