webpack.config.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. const webpack = require('webpack');
  2. const path = require('path');
  3. const ExtractTextPlugin = require("extract-text-webpack-plugin");
  4. const HtmlWebpackPlugin = require('html-webpack-plugin');
  5. const WebpackDevServer = require('webpack-dev-server');
  6. const entries = require('./webpack/entry.config.js');
  7. const version = require('./package.json').version;
  8. const argv = require('yargs').argv;
  9. const ImageminPlugin = require('imagemin-webpack-plugin').default;
  10. let theme = {
  11. '@primary-color': '#58a3ff',
  12. '@link-color': '#58a3ff'
  13. };
  14. let isWatch = argv.env.watch == 'watch';
  15. let isDev = isWatch || argv.env.deploy == 'dev';
  16. module.exports = (function () {
  17. let plugins = [
  18. //把入口文件里面的数组打包成verdors.js
  19. // new ImageminPlugin({
  20. // disable: isDev,
  21. // test: 'img/**',
  22. // pngquant: {
  23. // quality: '75-75',
  24. // optimizationLevel: 9
  25. // }
  26. // }),
  27. new webpack.optimize.CommonsChunkPlugin({
  28. name: 'vendors'
  29. }),
  30. new ExtractTextPlugin({
  31. filename: "[name].css",
  32. disable: false,
  33. allChunks: true
  34. }),
  35. new webpack.ProvidePlugin({
  36. $: "jquery",
  37. jQuery: "jquery"
  38. }),
  39. new HtmlWebpackPlugin({
  40. title: '首页',
  41. filename: 'html/index.html',
  42. template: './template/index.html',
  43. chunks: ['index', 'vendors']
  44. }),
  45. new HtmlWebpackPlugin({
  46. title: '新闻页',
  47. filename: 'html/news.html',
  48. template: './template/news.html',
  49. chunks: ['news', 'vendors']
  50. }),
  51. new HtmlWebpackPlugin({
  52. title: '注册/登陆',
  53. filename: 'html/registered.html',
  54. template: './template/registered.html',
  55. chunks: ['registered', 'vendors']
  56. }),
  57. ];
  58. if (!isDev) {
  59. //这个使用uglifyJs压缩你的js代码
  60. plugins.unshift(new webpack.DefinePlugin({
  61. "process.env": {
  62. NODE_ENV: JSON.stringify("production")
  63. }
  64. }));
  65. plugins.unshift(new webpack.optimize.UglifyJsPlugin({
  66. minimize: true,
  67. compress: {
  68. warnings: true
  69. }
  70. }));
  71. }
  72. //let staticHost = 'http://aftts.hnzhiming.com';
  73. //let staticHost = 'http://afts.hnzhiming.com';
  74. let staticHost = 'http://127.0.0.1';
  75. switch (argv.env.deploy) {
  76. case 'test':
  77. staticHost = 'http://static.jishutao.com';
  78. break;
  79. case 'prod':
  80. staticHost = 'http://s.jishutao.com';
  81. break;
  82. default:
  83. break;
  84. }
  85. staticHost = staticHost + '/portal/' + version + '/';
  86. return {
  87. entry: isWatch ? entries.watch : entries.prod,
  88. output: {
  89. path: path.resolve(__dirname, './build/' + argv.env.deploy + '/' + version),
  90. filename: '[name].js',
  91. publicPath: staticHost,
  92. chunkFilename: 'chunks/[name].[hash:8].js'
  93. },
  94. module: require('./webpack/module.config.js')(theme),
  95. resolve: {
  96. extensions: ['.js', '.jsx']
  97. },
  98. plugins: plugins,
  99. devServer: {
  100. disableHostCheck: true,
  101. //allowedHosts: ['aft.hnzhiming.com', 'afts.hnzhiming.com'],
  102. headers: {
  103. "Access-Control-Allow-Origin": "*"
  104. }
  105. }
  106. };
  107. })();