webpack.config.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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. new webpack.optimize.CommonsChunkPlugin({
  19. name: 'vendors'
  20. }),
  21. new ExtractTextPlugin({
  22. filename: "[name].css",
  23. disable: false,
  24. allChunks: true
  25. }),
  26. new webpack.ProvidePlugin({
  27. $: "jquery",
  28. jQuery: "jquery"
  29. }),
  30. new HtmlWebpackPlugin({
  31. title: '首页',
  32. filename: 'html/index.html',
  33. template: './template/index.html',
  34. chunks: ['index', 'vendors']
  35. }),
  36. new HtmlWebpackPlugin({
  37. title: '科技服务',
  38. filename: 'html/service.html',
  39. template: './template/service.html',
  40. chunks: ['service', 'vendors']
  41. }),
  42. new HtmlWebpackPlugin({
  43. title: '注册',
  44. filename: 'html/register.html',
  45. template: './template/register.html',
  46. chunks: ['register', 'vendors']
  47. }),
  48. new HtmlWebpackPlugin({
  49. title: '科技交易',
  50. filename: 'html/technologyTrading.html',
  51. template: './template/technologyTrading.html',
  52. chunks: ['technologyTrading', 'vendors']
  53. }),
  54. new HtmlWebpackPlugin({
  55. title: '科技智库',
  56. filename: 'html/thinkTank.html',
  57. template: './template/thinkTank.html',
  58. chunks: ['thinkTank', 'vendors']
  59. }),
  60. new HtmlWebpackPlugin({
  61. title: '科技金融',
  62. filename: 'html/financialIndex.html',
  63. template: './template/financialIndex.html',
  64. chunks: ['financialIndex', 'vendors']
  65. }),
  66. new HtmlWebpackPlugin({
  67. title: '科技交易-技术专利',
  68. filename: 'html/technologyTrading/achievement.html',
  69. template: './template/technologyTrading/achievement.html',
  70. chunks: ['technologyTrading/achievement', 'vendors']
  71. }),
  72. new HtmlWebpackPlugin({
  73. title: '科技交易-技术需求',
  74. filename: 'html/technologyTrading/demand.html',
  75. template: './template/technologyTrading/demand.html',
  76. chunks: ['technologyTrading/demand', 'vendors']
  77. }),
  78. new HtmlWebpackPlugin({
  79. title: '科技交易-技术专利详情',
  80. filename: 'html/technologyTrading/achievementDetail.html',
  81. template: './template/technologyTrading/achievementDetail.html',
  82. chunks: ['technologyTrading/achievementDetail', 'vendors']
  83. }),
  84. new HtmlWebpackPlugin({
  85. title: '科技交易-技术需求详情',
  86. filename: 'html/technologyTrading/demandDetail.html',
  87. template: './template/technologyTrading/demandDetail.html',
  88. chunks: ['technologyTrading/demandDetail', 'vendors']
  89. }),
  90. new HtmlWebpackPlugin({
  91. title: '智库咨询-智政详情',
  92. filename: 'html/thinkTank/policyDetail.html',
  93. template: './template/thinkTank/policyDetail.html',
  94. chunks: ['thinkTank/policyDetail', 'vendors']
  95. }),
  96. new HtmlWebpackPlugin({
  97. title: '智库咨询-智政列表',
  98. filename: 'html/thinkTank/policyList.html',
  99. template: './template/thinkTank/policyList.html',
  100. chunks: ['thinkTank/policyList', 'vendors']
  101. }),
  102. new HtmlWebpackPlugin({
  103. title: '智库咨询-智者详情',
  104. filename: 'html/thinkTank/thinkerDetail.html',
  105. template: './template/thinkTank/thinkerDetail.html',
  106. chunks: ['thinkTank/thinkerDetail', 'vendors']
  107. }),
  108. new HtmlWebpackPlugin({
  109. title: '科技金融-投资机构',
  110. filename: 'html/financial/investmentInstitution.html',
  111. template: './template/financial/investmentInstitution.html',
  112. chunks: ['financial/investmentInstitution', 'vendors']
  113. }),
  114. new HtmlWebpackPlugin({
  115. title: '科技金融-投资机构',
  116. filename: 'html/financial/investmentDetail.html',
  117. template: './template/financial/investmentDetail.html',
  118. chunks: ['financial/investmentDetail', 'vendors']
  119. }),
  120. new HtmlWebpackPlugin({
  121. title: '科技服务-高新认定',
  122. filename: 'html/service/highTechCognizance.html',
  123. template: './template/service/highTechCognizance.html',
  124. chunks: ['service/highTechCognizance', 'vendors']
  125. }),
  126. new HtmlWebpackPlugin({
  127. title: '科技服务-知识产权',
  128. filename: 'html/service/propertyRight.html',
  129. template: './template/service/propertyRight.html',
  130. chunks: ['service/propertyRight', 'vendors']
  131. }),
  132. ];
  133. if (!isDev) {
  134. //这个使用uglifyJs压缩你的js代码
  135. plugins.unshift(new webpack.DefinePlugin({
  136. "process.env": {
  137. NODE_ENV: JSON.stringify("production")
  138. }
  139. }));
  140. plugins.unshift(new webpack.optimize.UglifyJsPlugin({
  141. minimize: true,
  142. compress: {
  143. warnings: true
  144. }
  145. }));
  146. }
  147. //let staticHost = 'http://aftts.hnzhiming.com';
  148. //let staticHost = 'http://afts.hnzhiming.com';
  149. let staticHost = 'http://127.0.0.1';
  150. switch (argv.env.deploy) {
  151. case 'test':
  152. staticHost = 'http://static.jishutao.com';
  153. break;
  154. case 'stage':
  155. staticHost = 'http://aftts.hnzhiming.com';
  156. break;
  157. case 'prod':
  158. staticHost = 'http://s.jishutao.com';
  159. break;
  160. default:
  161. break;
  162. }
  163. staticHost = staticHost + '/portal/' + version + '/';
  164. return {
  165. entry: isWatch ? entries.watch : entries.prod,
  166. output: {
  167. path: path.resolve(__dirname, './build/' + argv.env.deploy + '/' + version),
  168. filename: '[name].js',
  169. publicPath: staticHost,
  170. chunkFilename: 'chunks/[name].[hash:8].js'
  171. },
  172. module: require('./webpack/module.config.js')(theme),
  173. resolve: {
  174. extensions: ['.js', '.jsx']
  175. },
  176. plugins: plugins,
  177. devServer: {
  178. disableHostCheck: true,
  179. //allowedHosts: ['aft.hnzhiming.com', 'afts.hnzhiming.com'],
  180. headers: {
  181. "Access-Control-Allow-Origin": "*"
  182. }
  183. }
  184. };
  185. })();