webpack.config.prod.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. var path = require('path');
  2. var webpack = require('webpack');
  3. var HtmlWebpackPlugin = require('html-webpack-plugin');
  4. var CopyWebpackPlugin = require('copy-webpack-plugin');
  5. var { CleanWebpackPlugin } = require('clean-webpack-plugin');
  6. var definePlugin = new webpack.DefinePlugin({
  7. 'process.env.DEV': JSON.stringify(JSON.parse(process.env.DEV || 'false'))
  8. });
  9. var outpath = './webpack/';
  10. if (!process.env.DEV || process.env.DEV === false) {
  11. console.log('CORDOVA environment');
  12. outpath = 'www/';
  13. } else {
  14. console.log('DEV environment');
  15. }
  16. // optimization: {
  17. // splitChunks: {
  18. // chunks: 'all',
  19. // },
  20. // },
  21. module.exports = {
  22. devtool: 'cheap-source-map',
  23. mode: 'development',
  24. target: 'web',
  25. entry: {
  26. app: path.resolve(__dirname, 'src/main.js')
  27. // socketio: path.resolve(__dirname, 'node_modules/socket.io-client/dist/socket.io.slim'),
  28. // phaser: 'phaser'
  29. },
  30. output: {
  31. filename: 'app.bundle.js',
  32. path: path.resolve(__dirname, outpath + 'dist')
  33. },
  34. plugins: [
  35. definePlugin,
  36. new CleanWebpackPlugin(),
  37. new CopyWebpackPlugin([
  38. {
  39. context: path.resolve(__dirname, 'src', 'assets'),
  40. from: '**/*',
  41. to: path.resolve(__dirname, outpath, 'assets')
  42. }
  43. ]),
  44. new HtmlWebpackPlugin({
  45. filename: '../index.html',
  46. template: './src/index.html',
  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 webpack.DefinePlugin({
  61. CANVAS_RENDERER: JSON.stringify(true),
  62. WEBGL_RENDERER: JSON.stringify(true)
  63. })
  64. ],
  65. module: {
  66. rules: [
  67. { test: /\.js$/, exclude: /(node_modules|server)/, loaders: "babel-loader" },
  68. {
  69. test: /\.(gif|png|jpe?g|svg|xml)$/i,
  70. use: "file-loader"
  71. },
  72. {
  73. test: [/\.vert$/, /\.frag$/],
  74. use: "raw-loader"
  75. }
  76. ]
  77. }
  78. };