14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
|
|
import { defineConfig } from "vite"
|
||
|
|
import react from "@vitejs/plugin-react"
|
||
|
|
import tailwindcss from "@tailwindcss/vite"
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react(), tailwindcss()],
|
||
|
|
server: {
|
||
|
|
port: 5173,
|
||
|
|
proxy: {
|
||
|
|
"/api": "http://localhost:3000",
|
||
|
|
"/images": "http://localhost:3000",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|