index.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. '/image-service': {
  74. // 目标 API 地址
  75. target: 'http://api.sagacloud.cn',
  76. changeOrigin: true,
  77. pathRewrite: {
  78. "^/image-service": "/dp-auxiliary/image-service/"
  79. }
  80. },
  81. '/godhand': {
  82. // 目标 API 地址
  83. target: 'http://api.sagacloud.cn',
  84. changeOrigin: true,
  85. pathRewrite: {
  86. "^/godhand": "/dp-auxiliary/godhand/"
  87. }
  88. },
  89. '/modelapi': {
  90. target: 'http://mbi.sagacloud.cn:8080',
  91. // target: 'http://192.168.20.218:8082',//景灏
  92. changeOrigin: true,
  93. pathRewrite: {
  94. "^/modelapi": "/revit-algorithm/"
  95. }
  96. },
  97. },
  98. // proxyTable: {
  99. // '/admin': {
  100. // target: 'http://192.168.20.235:8080',
  101. // changeOrigin: true,
  102. // pathRewrite: {
  103. // "^/admin": "/"
  104. // }
  105. // },
  106. // '/api': {
  107. // target: 'http://192.168.20.235:8080',
  108. // changeOrigin: true,
  109. // pathRewrite: {
  110. // "^/api": "/"
  111. // }
  112. // },
  113. // '/data-platform-3': {
  114. // // 目标 API 地址
  115. // target: 'http://192.168.20.225:8080/',
  116. // // 如果要代理 websockets
  117. // ws: true,
  118. // // 将主机标头的原点更改为目标URL
  119. // changeOrigin: false
  120. // },
  121. // '/business-space': {
  122. // // 目标 API 地址
  123. // target: 'http://192.168.20.225:8080/',
  124. // // 如果要代理 websockets
  125. // ws: true,
  126. // // 将主机标头的原点更改为目标URL
  127. // changeOrigin: false
  128. // },
  129. // '/pointconfig': {
  130. // // 目标 API 地址
  131. // target: 'http://192.168.20.236:8080/',
  132. // // 如果要代理 websockets
  133. // ws: true,
  134. // // 将主机标头的原点更改为目标URL
  135. // changeOrigin: false
  136. // },
  137. // '/venders-dp': {
  138. // // 目标 API 地址
  139. // target: 'http://192.168.20.225:8080/',
  140. // // 如果要代理 websockets
  141. // ws: true,
  142. // // 将主机标头的原点更改为目标URL
  143. // changeOrigin: false
  144. // },
  145. // '/venders': {
  146. // // 目标 API 地址
  147. // target: 'http://192.168.20.225:8080/',
  148. // // 如果要代理 websockets
  149. // ws: true,
  150. // // 将主机标头的原点更改为目标URL
  151. // changeOrigin: false
  152. // },
  153. // '/ScanBuilding': {
  154. // // 目标 API 地址
  155. // target: 'http://192.168.20.236:8080/',
  156. // // 如果要代理 websockets
  157. // ws: true,
  158. // // 将主机标头的原点更改为目标URL
  159. // changeOrigin: false
  160. // },
  161. // '/image-service': {
  162. // // 目标 API 地址
  163. // target: 'http://192.168.20.225:8080/',
  164. // // 如果要代理 websockets
  165. // ws: true,
  166. // // 将主机标头的原点更改为目标URL
  167. // changeOrigin: false
  168. // },
  169. // '/godhand': {
  170. // // 目标 API 地址
  171. // target: 'http://192.168.20.225:8080/',
  172. // // 如果要代理 websockets
  173. // ws: true,
  174. // // 将主机标头的原点更改为目标URL
  175. // changeOrigin: false
  176. // },
  177. // '/modelapi': {
  178. // target: 'http://192.168.20.225:8082',
  179. // // target: 'http://192.168.20.218:8082',//景灏
  180. // changeOrigin: true,
  181. // pathRewrite: {
  182. // "^/modelapi": "/"
  183. // }
  184. // },
  185. // },
  186. // Various Dev Server settings
  187. host: '0.0.0.0', // can be overwritten by process.env.HOST
  188. port: 28080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  189. autoOpenBrowser: false,
  190. errorOverlay: true,
  191. notifyOnErrors: true,
  192. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  193. /**
  194. * Source Maps
  195. */
  196. // https://webpack.js.org/configuration/devtool/#development
  197. devtool: 'cheap-module-eval-source-map',
  198. // If you have problems debugging vue-files in devtools,
  199. // set this to false - it *may* help
  200. // https://vue-loader.vuejs.org/en/options.html#cachebusting
  201. cacheBusting: true,
  202. cssSourceMap: true
  203. },
  204. build: {
  205. // Template for index.html
  206. index: path.resolve(__dirname, '../dist/index.html'),
  207. // Paths
  208. assetsRoot: path.resolve(__dirname, '../dist'),
  209. assetsSubDirectory: 'static',
  210. assetsPublicPath: '/',
  211. /**
  212. * Source Maps
  213. */
  214. productionSourceMap: true,
  215. // https://webpack.js.org/configuration/devtool/#production
  216. devtool: '#source-map',
  217. // Gzip off by default as many popular static hosts such as
  218. // Surge or Netlify already gzip all static assets for you.
  219. // Before setting to `true`, make sure to:
  220. // npm install --save-dev compression-webpack-plugin
  221. productionGzip: false,
  222. productionGzipExtensions: ['js', 'css'],
  223. // Run the build command with an extra argument to
  224. // View the bundle analyzer report after build finishes:
  225. // `npm run build --report`
  226. // Set to `true` or `false` to always turn it on or off
  227. bundleAnalyzerReport: process.env.npm_config_report
  228. }
  229. }