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 203B

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