xq-csg-weapp_uni-ts
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

19 lines
559B

  1. import { defineConfig } from "vite";
  2. import uni from "@dcloudio/vite-plugin-uni";
  3. // https://vitejs.dev/config/
  4. export default defineConfig({
  5. plugins: [uni()],
  6. // publicPath: './',
  7. // server: {
  8. // proxy: {
  9. // "/admin-api": { // “/api” 以及前置字符串会被替换为真正域名
  10. // target: "http://47.92.245.35:5002", // 请求域名
  11. // secure: false, // 请求是否为https
  12. // changeOrigin: true, // 是否跨域
  13. // rewrite: (path) => path.replace(/^\/admin-api/, "")
  14. // }
  15. // }
  16. // }
  17. });