云计算课程实验
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.

19 lines
377 B

  1. module.exports = {
  2. cache: true,
  3. entry: './static/src/app.js',
  4. output: {
  5. filename: './static/build/main.js'
  6. },
  7. devtool: 'source-map',
  8. module: {
  9. loaders: [
  10. {
  11. test: /\.js$/,
  12. loader: 'babel-loader',
  13. query: {
  14. presets: ['es2015', 'react']
  15. }
  16. },
  17. ]
  18. }
  19. };