13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 5174,
|
|
strictPort: true,
|
|
proxy: {
|
|
"/api": "http://localhost:3001",
|
|
"/storage": "http://localhost:3001"
|
|
}
|
|
}
|
|
});
|