vite.config.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. import { defineConfig, loadEnv } from 'vite'
  2. import path from 'path'
  3. import createVitePlugins from './vite/plugins'
  4. import {BASE_URL} from './src/config'
  5. // https://vitejs.dev/config/
  6. export default defineConfig(({ mode, command }) => {
  7. const env = loadEnv(mode, process.cwd())
  8. const { VITE_APP_ENV } = env
  9. return {
  10. // 部署生产环境和开发环境下的URL。
  11. // 默认情况下,vite 会假设你的应用是被部署在一个域名的根路径上
  12. // 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。
  13. base: VITE_APP_ENV === 'production' ? '/' : '/',
  14. plugins: createVitePlugins(env, command === 'build'),
  15. resolve: {
  16. // https://cn.vitejs.dev/config/#resolve-alias
  17. alias: {
  18. // 设置路径
  19. '~': path.resolve(__dirname, './'),
  20. // 设置别名
  21. '@': path.resolve(__dirname, './src')
  22. },
  23. // https://cn.vitejs.dev/config/#resolve-extensions
  24. extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
  25. },
  26. // vite 相关配置
  27. server: {
  28. port: 81,
  29. // host: 'true',
  30. host: '0.0.0.0',
  31. open: true,
  32. proxy: {
  33. // https://cn.vitejs.dev/config/#server-proxy
  34. '/dev-api': {
  35. target: 'http://'+ BASE_URL,
  36. changeOrigin: true,
  37. rewrite: (p) => p.replace(/^\/dev-api/, '')
  38. },
  39. '/prod-api': {
  40. target: 'http://'+ BASE_URL,
  41. changeOrigin: true,
  42. rewrite: (p) => p.replace(/^\/prod-api/, '')
  43. },
  44. '/stage-api': {
  45. target: 'http://'+ BASE_URL,
  46. changeOrigin: true,
  47. rewrite: (p) => p.replace(/^\/stage-api/, '')
  48. },
  49. }
  50. },
  51. //fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file
  52. css: {
  53. postcss: {
  54. plugins: [
  55. {
  56. postcssPlugin: 'internal:charset-removal',
  57. AtRule: {
  58. charset: (atRule) => {
  59. if (atRule.name === 'charset') {
  60. atRule.remove();
  61. }
  62. }
  63. }
  64. }
  65. ]
  66. }
  67. }
  68. }
  69. })