You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

webpack.js 247B

1234567891011
  1. const path = require('path')
  2. module.exports = {
  3. entry: path.join(__dirname, 'src', 'main.js'),
  4. output: {
  5. path: path.resolve(__dirname, './js'),
  6. publicPath: '/js/',
  7. filename: 'dashboard.js',
  8. jsonpFunction: 'webpackJsonpDashboard',
  9. },
  10. }