webpack.config.js 2.3 KB

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