webpack.config.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. const HtmlWebPackPlugin = require("html-webpack-plugin"); //打包html
  2. const MiniCssExtractPlugin = require("mini-css-extract-plugin"); //css抽取独立文件分开打包压缩
  3. const {CleanWebpackPlugin} = require('clean-webpack-plugin'); //清除文件夹
  4. const CopyWebpackPlugin = require('copy-webpack-plugin'); //复制文件
  5. const WebpackSftpClient = require('webpack-sftp-client'); //自动上传
  6. const path = require("path");
  7. module.exports = (env, options) => {
  8. let outPath = "dist",
  9. plugins = [
  10. new CleanWebpackPlugin(),
  11. new CopyWebpackPlugin([
  12. {
  13. from: 'src/assets',
  14. to: 'assets'
  15. }
  16. ]),
  17. new MiniCssExtractPlugin({filename: "[name][hash].css", chunkFilename: "[id][hash].css"}),
  18. new HtmlWebPackPlugin({template: './src/index.html', title: '竹香米业数字农业精准管理图', chunksSortMode: "none", inject: true})
  19. ];
  20. if (options.mode === 'development') {
  21. outPath = 'dev'
  22. } else {
  23. /*plugins.push(new WebpackSftpClient({
  24. port: '22', //服务器端口
  25. host: '172.16.90.253', //服务器地址
  26. username: 'root', //用户名
  27. password: 'hywa$123', //密码
  28. path: path.resolve(__dirname, outPath), //本地路径
  29. remotePath: '/www/演示项目/湄潭一期/tpl-H5', //服务器上的路径
  30. verbose: true
  31. }))*/
  32. }
  33. return {
  34. entry: {
  35. index: "./src/index.js"
  36. },
  37. output: {
  38. filename: `js/[hash]${parseInt(Math.random()*10000)}.js`,
  39. path: path.resolve(__dirname, outPath),
  40. publicPath: ''
  41. },
  42. plugins,
  43. module: {
  44. rules: [
  45. {
  46. test: /\.(js|jsx)$/,
  47. exclude: /node_modules/,
  48. include: path.resolve(__dirname, "src"),
  49. use: [
  50. {
  51. loader: "babel-loader"
  52. }
  53. ]
  54. }, {
  55. test: /\.(sa|sc|)ss$/,
  56. use: [
  57. {
  58. loader: MiniCssExtractPlugin.loader,
  59. options: {
  60. hmr: options.mode === 'development'
  61. }
  62. }, {
  63. loader: "css-loader",
  64. options: {
  65. modules: false, //css modules
  66. }
  67. },
  68. 'sass-loader'
  69. ]
  70. }, {
  71. test: /\.css$/,
  72. use: [
  73. {
  74. loader: MiniCssExtractPlugin.loader,
  75. options: {
  76. hmr: options.mode === 'development'
  77. }
  78. }, {
  79. loader: "css-loader",
  80. options: {
  81. modules: true, //css modules
  82. }
  83. }
  84. ]
  85. }, {
  86. test: /\.(jpe?g|png|gif|webp)$/,
  87. use: [
  88. {
  89. loader: "url-loader",
  90. options: {
  91. // Inline files smaller than 10 kB (10240 bytes)
  92. limit: 10 * 1024
  93. }
  94. }
  95. ]
  96. }, {
  97. test: /\.(wsv|ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
  98. use: [
  99. {
  100. loader: "file-loader",
  101. options: {
  102. name: "build/[name].[ext]"
  103. }
  104. }
  105. ]
  106. }
  107. ]
  108. },
  109. externals: [(context, request, callback) => {
  110. if (/pe-wasm$/.test(request)) {
  111. return callback(null, "amd " + request);
  112. }
  113. callback();
  114. }
  115. ],
  116. resolve: {
  117. modules: [
  118. path.resolve(__dirname, "/src"),
  119. "node_modules/"
  120. ],
  121. extensions: [".js", ".scss"]
  122. },
  123. node: {
  124. process: false,
  125. global: false,
  126. fs: "empty"
  127. },
  128. devServer: {
  129. disableHostCheck: true,
  130. historyApiFallback: true,
  131. host: '0.0.0.0',
  132. port: 9008,
  133. proxy: {
  134. '/screen':{
  135. target: 'http://127.0.0.1:9008',
  136. pathRewrite: {
  137. '^/screen': ''
  138. },
  139. changeOrigin: true
  140. },
  141. '/htdata': {
  142. // target: 'http://47.111.224.169:8310',
  143. target: 'http://lyfbht.hw.hongweisoft.com',
  144. // pathRewrite: {
  145. // '^/htdata': ''
  146. // },
  147. changeOrigin: true
  148. },
  149. '/product': {
  150. target: 'http://ghost.nat300.top',
  151. pathRewrite: {
  152. '^/product': ''
  153. },
  154. changeOrigin: true
  155. },
  156. '/forest-admin':{
  157. target: 'http://129.28.174.150:7050',
  158. changeOrigin: true
  159. }
  160. }
  161. }
  162. }
  163. }