Skip to content
Snippets Groups Projects
Select Git revision
4 results Searching

webpack.common.js

Blame
  • webpack.common.js 199 B
    const path = require('path');
    
    module.exports = {
      entry: {
        app: './js/app.js',
      },
      output: {
        path: path.resolve(__dirname, 'dist'),
        clean: true,
        filename: './js/app.js',
      },
    };