webpack.config.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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/service.html',
  48. template: './template/service.html',
  49. chunks: ['service', 'vendors']
  50. }),
  51. new HtmlWebpackPlugin({
  52. title: '注册',
  53. filename: 'html/register.html',
  54. template: './template/register.html',
  55. chunks: ['register', 'vendors']
  56. }),
  57. new HtmlWebpackPlugin({
  58. title: '科技交易',
  59. filename: 'html/technologyTrading.html',
  60. template: './template/technologyTrading.html',
  61. chunks: ['technologyTrading', 'vendors']
  62. }),
  63. new HtmlWebpackPlugin({
  64. title: '科技智库',
  65. filename: 'html/thinktank.html',
  66. template: './template/thinktank.html',
  67. chunks: ['thinktank', 'vendors']
  68. }),
  69. new HtmlWebpackPlugin({
  70. title: '科技金融',
  71. filename: 'html/financialIndex.html',
  72. template: './template/financialIndex.html',
  73. chunks: ['financialIndex', 'vendors']
  74. }),
  75. new HtmlWebpackPlugin({
  76. title: '科技交易-技术专利',
  77. filename: 'html/technologyTrading/achievement.html',
  78. template: './template/technologyTrading/achievement.html',
  79. chunks: ['technologyTrading/achievement', 'vendors']
  80. }),
  81. new HtmlWebpackPlugin({
  82. title: '科技交易-技术需求',
  83. filename: 'html/technologyTrading/demand.html',
  84. template: './template/technologyTrading/demand.html',
  85. chunks: ['technologyTrading/demand', 'vendors']
  86. }),
  87. new HtmlWebpackPlugin({
  88. title: '科技交易-技术专利详情',
  89. filename: 'html/technologyTrading/achievementDetail.html',
  90. template: './template/technologyTrading/achievementDetail.html',
  91. chunks: ['technologyTrading/achievementDetail', 'vendors']
  92. }),
  93. new HtmlWebpackPlugin({
  94. title: '科技交易-技术需求详情',
  95. filename: 'html/technologyTrading/demandDetail.html',
  96. template: './template/technologyTrading/demandDetail.html',
  97. chunks: ['technologyTrading/demandDetail', 'vendors']
  98. }),
  99. new HtmlWebpackPlugin({
  100. title: '智库咨询-智库政策',
  101. filename: 'html/thinkTank/policy.html',
  102. template: './template/thinkTank/policy.html',
  103. chunks: ['thinkTank/policy', 'vendors']
  104. }),
  105. new HtmlWebpackPlugin({
  106. title: '智库咨询-智政详情',
  107. filename: 'html/thinkTank/policyDetail.html',
  108. template: './template/thinkTank/policyDetail.html',
  109. chunks: ['thinkTank/policyDetail', 'vendors']
  110. }),
  111. new HtmlWebpackPlugin({
  112. title: '智库咨询-智者详情',
  113. filename: 'html/thinkTank/thinkerDetail.html',
  114. template: './template/thinkTank/thinkerDetail.html',
  115. chunks: ['thinkTank/thinkerDetail', 'vendors']
  116. })
  117. ];
  118. if (!isDev) {
  119. //这个使用uglifyJs压缩你的js代码
  120. plugins.unshift(new webpack.DefinePlugin({
  121. "process.env": {
  122. NODE_ENV: JSON.stringify("production")
  123. }
  124. }));
  125. plugins.unshift(new webpack.optimize.UglifyJsPlugin({
  126. minimize: true,
  127. compress: {
  128. warnings: true
  129. }
  130. }));
  131. }
  132. //let staticHost = 'http://aftts.hnzhiming.com';
  133. //let staticHost = 'http://afts.hnzhiming.com';
  134. let staticHost = 'http://127.0.0.1';
  135. switch (argv.env.deploy) {
  136. case 'test':
  137. staticHost = 'http://static.jishutao.com';
  138. break;
  139. case 'stage':
  140. staticHost = 'http://aftts.hnzhiming.com';
  141. break;
  142. case 'prod':
  143. staticHost = 'http://s.jishutao.com';
  144. break;
  145. default:
  146. break;
  147. }
  148. staticHost = staticHost + '/portal/' + version + '/';
  149. return {
  150. entry: isWatch ? entries.watch : entries.prod,
  151. output: {
  152. path: path.resolve(__dirname, './build/' + argv.env.deploy + '/' + version),
  153. filename: '[name].js',
  154. publicPath: staticHost,
  155. chunkFilename: 'chunks/[name].[hash:8].js'
  156. },
  157. module: require('./webpack/module.config.js')(theme),
  158. resolve: {
  159. extensions: ['.js', '.jsx']
  160. },
  161. plugins: plugins,
  162. devServer: {
  163. disableHostCheck: true,
  164. //allowedHosts: ['aft.hnzhiming.com', 'afts.hnzhiming.com'],
  165. headers: {
  166. "Access-Control-Allow-Origin": "*"
  167. }
  168. }
  169. };
  170. })();