webpack.config.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. var path = require('path');
  2. var webpack = require('webpack');
  3. var HtmlWebpackPlugin = require('html-webpack-plugin');
  4. var BrowserSyncPlugin = require('browser-sync-webpack-plugin');
  5. var CopyWebpackPlugin = require('copy-webpack-plugin');
  6. var {CleanWebpackPlugin} = require('clean-webpack-plugin');
  7. var definePlugin = new webpack.DefinePlugin({
  8. __DEV__: JSON.stringify(JSON.parse(process.env.BUILD_DEV || 'true'))
  9. });
  10. module.exports = {
  11. devtool: 'cheap-source-map',
  12. mode: 'development',
  13. entry: {
  14. polyfills: './src/polyfills.js',
  15. app: path.resolve(__dirname, 'src/main.js'),
  16. },
  17. target: 'web',
  18. watch: true,
  19. output: {
  20. pathinfo: true,
  21. filename: '[name].bundle.js',
  22. chunkFilename: '[name].bundle.js',
  23. path: path.resolve(__dirname, 'www/dist/')
  24. },
  25. optimization: {
  26. splitChunks: {
  27. cacheGroups: {
  28. commons: { test: /[\\/]node_modules[\\/]/, name: "vendors", chunks: "all" }
  29. }
  30. }
  31. },
  32. plugins: [
  33. definePlugin,
  34. new CleanWebpackPlugin({verbose:true}),
  35. new CopyWebpackPlugin([
  36. {
  37. context: path.resolve(__dirname, 'src', 'assets'),
  38. from: '**/*',
  39. to: path.resolve(__dirname, 'www', 'assets')
  40. }
  41. ]),
  42. new HtmlWebpackPlugin({
  43. filename: '../index.html',
  44. template: './src/index.html',
  45. chunksSortMode: "manual",
  46. chunks: ['polyfills', 'vendors', 'app'],
  47. minify: {
  48. removeAttributeQuotes: false,
  49. collapseWhitespace: false,
  50. html5: false,
  51. minifyCSS: false,
  52. minifyJS: false,
  53. minifyURLs: false,
  54. removeComments: false,
  55. removeEmptyAttributes: false
  56. },
  57. hash: false,
  58. inject: true
  59. }),
  60. new BrowserSyncPlugin({
  61. host: process.env.IP || 'localhost',
  62. port: process.env.PORT || 3000,
  63. server: {
  64. baseDir: ['./', './build']
  65. }
  66. }),
  67. new webpack.DefinePlugin({
  68. CANVAS_RENDERER: JSON.stringify(true),
  69. WEBGL_RENDERER: JSON.stringify(true)
  70. })
  71. ],
  72. module: {
  73. rules: [
  74. { test: /\.js$/, exclude: /node_modules/, loaders: "babel-loader" },
  75. {
  76. test: /\.(gif|png|jpe?g|svg|xml)$/i,
  77. use: "file-loader"
  78. },
  79. {
  80. test: [/\.vert$/, /\.frag$/],
  81. use: "raw-loader"
  82. }
  83. ]
  84. }
  85. };