webpack.config.dev.js 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import path from 'path';
  2. import HtmlWebpackPlugin from 'html-webpack-plugin';
  3. import webpack from 'webpack';
  4. export default {
  5. devtool: 'inline-source-map',
  6. mode: 'development',
  7. entry: [
  8. path.resolve(__dirname, 'src/main.js')
  9. ],
  10. target: 'web',
  11. output: {
  12. path: path.resolve(__dirname, 'src'),
  13. publicPath: '/',
  14. filename: 'bundle.js'
  15. },
  16. plugins: [
  17. new webpack.DefinePlugin({
  18. CANVAS_RENDERER: JSON.stringify(true),
  19. WEBGL_RENDERER: JSON.stringify(true)
  20. }),
  21. // Create HTML file that includes reference to bundled JS.
  22. new HtmlWebpackPlugin({
  23. template: 'src/index.html',
  24. inject: true
  25. })
  26. ],
  27. module: {
  28. rules: [
  29. { test: /\.js$/, exclude: /node_modules/, loaders: "babel-loader" },
  30. {
  31. test: /\.(gif|png|jpe?g|svg|xml)$/i,
  32. use: "file-loader"
  33. },
  34. {
  35. test: [/\.vert$/, /\.frag$/],
  36. use: "raw-loader"
  37. }
  38. ]
  39. }
  40. };