vue.config.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. const CopyWebpackPlugin = require('copy-webpack-plugin')
  2. const webpack = require('webpack')
  3. const path = require('path')
  4. let cesiumSource = './node_modules/cesium/Source'
  5. let cesiumWorkers = '../Source/Workers'
  6. module.exports = {
  7. // 基本路径 3.6之前的版本时 baseUrl
  8. publicPath: "./",
  9. // 输出文件目录
  10. outputDir: "dist",
  11. // eslint-loader 是否在保存的时候检查
  12. lintOnSave: false,
  13. // webpack-dev-server 相关配置
  14. devServer: {
  15. open: process.platform === "darwin",
  16. host: "0.0.0.0",
  17. port: 5000,
  18. https: false,
  19. hotOnly: false
  20. },
  21. configureWebpack: {
  22. output: {
  23. sourcePrefix: ' '
  24. },
  25. amd: {
  26. toUrlUndefined: true
  27. },
  28. resolve: {
  29. alias: {
  30. 'vue$': 'vue/dist/vue.esm.js',
  31. '@': path.resolve('src'),
  32. 'cesium': path.resolve(__dirname, cesiumSource)
  33. }
  34. },
  35. plugins: [
  36. new CopyWebpackPlugin([{ from: path.join(cesiumSource, cesiumWorkers), to: 'Workers' }]),
  37. new CopyWebpackPlugin([{ from: path.join(cesiumSource, 'Assets'), to: 'Assets' }]),
  38. new CopyWebpackPlugin([{ from: path.join(cesiumSource, 'Widgets'), to: 'Widgets' }]),
  39. new CopyWebpackPlugin([{ from: path.join(cesiumSource, 'ThirdParty/Workers'), to: 'ThirdParty/Workers' }]),
  40. new webpack.DefinePlugin({
  41. CESIUM_BASE_URL: JSON.stringify('./')
  42. })
  43. ],
  44. module: {
  45. unknownContextCritical: /^.\/.*$/,
  46. unknownContextCritical: false
  47. }
  48. },
  49. devServer: {
  50. proxy: {
  51. '/fj': {
  52. target: 'http://127.0.0.1:8081',
  53. changeOrigin: true,
  54. ws: true,
  55. pathRewrite: {
  56. '^/fj': ''
  57. }
  58. },
  59. '/map': {
  60. target: '10.155.32.4/tiles',
  61. changeOrigin: true,
  62. ws: true,
  63. pathRewrite: {
  64. '^/map': ''
  65. }
  66. },
  67. }
  68. }
  69. };