vite.config.js 818 B

123456789101112131415161718192021222324252627282930313233343536
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import { resolve } from "path";
  4. // https://vitejs.dev/config/
  5. export default defineConfig({
  6. plugins: [vue()],
  7. base: './',
  8. resolve: {
  9. alias: {
  10. '@': resolve(__dirname, 'src'),
  11. },
  12. },
  13. css: {
  14. preprocessorOptions: {
  15. scss: {
  16. additionalData: `@import "./src/style/mixin.scss";` // 此处全局的scss文件
  17. }
  18. }
  19. },
  20. server: {
  21. // https: false,
  22. open: true, // 启动自动打开浏览器
  23. // host: '0.0.0.0', //启动本地ip
  24. port: 5176,
  25. // secure:false,
  26. // proxy: {
  27. // '/api': {
  28. // target: 'https://zhitq.hdlkeji.com',
  29. // ws: false,
  30. // changeOrigin: true,
  31. // // rewrite: (path) => path.replace(/^\/api/, '')
  32. // }
  33. // }
  34. },
  35. })