12345678910111213141516171819 |
- import { defineConfig } from "vite"
- import uni from "@dcloudio/vite-plugin-uni";
-
- export default defineConfig({
- plugins: [
- uni()
- ],
- server: {
- proxy: {
- '/api': {
- rewrite: path => path.replace(/^\/api/, ''),
- logLevel: 'debug',
- target: 'http://localhost:8888',
- changeOrigin: true
- },
-
- }
- }
- })
|