webpack.config.dev.js 1.1 KB

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