Skip to content
Snippets Groups Projects
webpack.common.js 199 B
Newer Older
  • Learn to ignore specific revisions
  • Bye's avatar
    Bye committed
    const path = require('path');
    
    module.exports = {
      entry: {
        app: './js/app.js',
      },
      output: {
        path: path.resolve(__dirname, 'dist'),
        clean: true,
        filename: './js/app.js',
      },
    };