webpack.config.js 247 B

12345678910111213141516
  1. const path = require('path');
  2. const glob = require('glob');
  3. const config = {
  4. context: path.resolve(__dirname, './'),
  5. entry: {
  6. app: './app/app.module.js',
  7. },
  8. devServer: {
  9. port: 9000,
  10. stats: 'errors-only'
  11. }
  12. };
  13. module.exports = config;