index.js 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. 'use strict'
  2. // Template version: 1.3.1
  3. // see http://vuejs-templates.github.io/webpack for documentation.
  4. const path = require('path')
  5. module.exports = {
  6. dev: {
  7. // Paths
  8. assetsSubDirectory: 'static',
  9. assetsPublicPath: '/',
  10. proxyTable: {//正式环境
  11. '/admin': {
  12. target: 'http://mbi.sagacloud.cn:8080',
  13. changeOrigin: true,
  14. pathRewrite: {
  15. "^/admin": "/"
  16. }
  17. },
  18. '/api': {
  19. target: 'http://mbi.sagacloud.cn:8080',
  20. changeOrigin: true,
  21. pathRewrite: {
  22. "^/api": "/"
  23. }
  24. },
  25. '/data-platform-3': {
  26. // 目标 API 地址
  27. target: 'http://api.sagacloud.cn/',
  28. // 如果要代理 websockets
  29. ws: true,
  30. // 将主机标头的原点更改为目标URL
  31. changeOrigin: false
  32. },
  33. '/business-space': {
  34. // 目标 API 地址
  35. target: 'http://api.sagacloud.cn',
  36. changeOrigin: true,
  37. pathRewrite: {
  38. "^/business-space": "/dp-auxiliary/business-space/"
  39. }
  40. },
  41. '/pointconfig': {
  42. // 目标 API 地址
  43. target: 'http://mbi.sagacloud.cn:8080/',
  44. // 如果要代理 websockets
  45. ws: true,
  46. // 将主机标头的原点更改为目标URL
  47. changeOrigin: false
  48. },
  49. '/venders-dp': {
  50. // 目标 API 地址
  51. target: 'http://api.sagacloud.cn',
  52. changeOrigin: true,
  53. pathRewrite: {
  54. "^/venders-dp": "/dp-auxiliary/venders-dp/"
  55. }
  56. },
  57. '/venders': {
  58. // 目标 API 地址
  59. target: 'http://api.sagacloud.cn',
  60. changeOrigin: true,
  61. pathRewrite: {
  62. "^/venders": "/dp-auxiliary/venders/"
  63. }
  64. },
  65. '/ScanBuilding': {
  66. // 目标 API 地址
  67. target: 'http://mbi.sagacloud.cn:8080/',
  68. // 如果要代理 websockets
  69. ws: true,
  70. // 将主机标头的原点更改为目标URL
  71. changeOrigin: false
  72. },
  73. '/scanbuilding-2': {
  74. // 目标 API 地址
  75. target: 'http://mbi.sagacloud.cn:8080/',
  76. // 如果要代理 websockets
  77. ws: true,
  78. // 将主机标头的原点更改为目标URL
  79. changeOrigin: false
  80. },
  81. '/image-service': {
  82. // 目标 API 地址
  83. target: 'http://api.sagacloud.cn',
  84. changeOrigin: true,
  85. pathRewrite: {
  86. "^/image-service": "/dp-auxiliary/image-service/"
  87. }
  88. },
  89. '/modelapi': {
  90. target: 'http://mbi.sagacloud.cn:8080',
  91. changeOrigin: true,
  92. pathRewrite: {
  93. "^/modelapi": "/revit-algorithm/"
  94. }
  95. },
  96. '/schedulerapi': {
  97. target: 'http://mbi.sagacloud.cn:8080',
  98. changeOrigin: true,
  99. pathRewrite: {
  100. "^/schedulerapi": "/scheduler/"
  101. }
  102. },
  103. },
  104. // proxyTable: {
  105. // '/admin': {
  106. // target: 'http://172.16.44.235:8080',
  107. // changeOrigin: true,
  108. // pathRewrite: {
  109. // "^/admin": "/"
  110. // }
  111. // },
  112. // '/api': {
  113. // target: 'http://172.16.44.235:8080',
  114. // changeOrigin: true,
  115. // pathRewrite: {
  116. // "^/api": "/"
  117. // }
  118. // },
  119. // '/data-platform-3': {
  120. // // 目标 API 地址
  121. // target: 'http://172.16.42.210:8080/',
  122. // // 如果要代理 websockets
  123. // ws: true,
  124. // // 将主机标头的原点更改为目标URL
  125. // changeOrigin: false
  126. // },
  127. // '/business-space': {
  128. // // 目标 API 地址
  129. // target: 'http://172.16.42.210:8080/',
  130. // // 如果要代理 websockets
  131. // ws: true,
  132. // // 将主机标头的原点更改为目标URL
  133. // changeOrigin: false
  134. // },
  135. // '/pointconfig': {
  136. // // 目标 API 地址
  137. // target: 'http://172.16.44.235:8080/',
  138. // // 如果要代理 websockets
  139. // ws: true,
  140. // // 将主机标头的原点更改为目标URL
  141. // changeOrigin: false
  142. // },
  143. // '/venders-dp': {
  144. // // 目标 API 地址
  145. // target: 'http://172.16.42.210:8080/',
  146. // // 如果要代理 websockets
  147. // ws: true,
  148. // // 将主机标头的原点更改为目标URL
  149. // changeOrigin: false
  150. // },
  151. // '/venders': {
  152. // // 目标 API 地址
  153. // target: 'http://172.16.42.210:8080/',
  154. // // 如果要代理 websockets
  155. // ws: true,
  156. // // 将主机标头的原点更改为目标URL
  157. // changeOrigin: false
  158. // },
  159. // '/ScanBuilding': {
  160. // // 目标 API 地址
  161. // target: 'http://172.16.44.235:8080/',
  162. // // 如果要代理 websockets
  163. // ws: true,
  164. // // 将主机标头的原点更改为目标URL
  165. // changeOrigin: false
  166. // },
  167. // '/scanbuilding-2': {
  168. // // 目标 API 地址
  169. // target: 'http://mbi.sagacloud.cn:8080/',
  170. // // 如果要代理 websockets
  171. // ws: true,
  172. // // 将主机标头的原点更改为目标URL
  173. // changeOrigin: false
  174. // },
  175. // '/image-service': {
  176. // // 目标 API 地址
  177. // target: 'http://172.16.42.210:8080/',
  178. // // 如果要代理 websockets
  179. // ws: true,
  180. // // 将主机标头的原点更改为目标URL
  181. // changeOrigin: false
  182. // },
  183. // '/modelapi': {
  184. // target: 'http://172.16.42.210:8082',
  185. // // target: 'http://192.168.20.218:8082',//景灏
  186. // changeOrigin: true,
  187. // pathRewrite: {
  188. // "^/modelapi": "/"
  189. // }
  190. // },
  191. // '/schedulerapi': {
  192. // target: 'http://172.16.42.210:8081',
  193. // changeOrigin: true,
  194. // pathRewrite: {
  195. // "^/schedulerapi": "/"
  196. // }
  197. // },
  198. // },
  199. // Various Dev Server settings
  200. host: '0.0.0.0', // can be overwritten by process.env.HOST
  201. port: 28080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  202. autoOpenBrowser: false,
  203. errorOverlay: true,
  204. notifyOnErrors: true,
  205. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  206. /**
  207. * Source Maps
  208. */
  209. // https://webpack.js.org/configuration/devtool/#development
  210. devtool: 'cheap-module-eval-source-map',
  211. // If you have problems debugging vue-files in devtools,
  212. // set this to false - it *may* help
  213. // https://vue-loader.vuejs.org/en/options.html#cachebusting
  214. cacheBusting: true,
  215. cssSourceMap: true
  216. },
  217. build: {
  218. // Template for index.html
  219. index: path.resolve(__dirname, '../dist/index.html'),
  220. // Paths
  221. assetsRoot: path.resolve(__dirname, '../dist'),
  222. assetsSubDirectory: 'static',
  223. assetsPublicPath: '/',
  224. /**
  225. * Source Maps
  226. */
  227. productionSourceMap: true,
  228. // https://webpack.js.org/configuration/devtool/#production
  229. devtool: '#source-map',
  230. // Gzip off by default as many popular static hosts such as
  231. // Surge or Netlify already gzip all static assets for you.
  232. // Before setting to `true`, make sure to:
  233. // npm install --save-dev compression-webpack-plugin
  234. productionGzip: false,
  235. productionGzipExtensions: ['js', 'css'],
  236. // Run the build command with an extra argument to
  237. // View the bundle analyzer report after build finishes:
  238. // `npm run build --report`
  239. // Set to `true` or `false` to always turn it on or off
  240. bundleAnalyzerReport: process.env.npm_config_report
  241. }
  242. }