Files
ForumMobile/vite.config.ts
2026-01-29 08:20:27 -06:00

29 lines
542 B
TypeScript

import { defineConfig } from 'vite';
export default defineConfig({
root: './src',
build: {
outDir: '../dist',
minify: false,
emptyOutDir: true,
},
server: {
proxy: {
"/login": {
target: "http://localhost:10002",
changeOrigin: true
},
"/profile": {
target: "http://localhost:10002",
changeOrigin: true
},
"/api": {
target: "http://localhost:10002",
changeOrigin: true
}
},
host: true,
allowedHosts: ['sam.local'],
}
});