15 lines
335 B
TypeScript
15 lines
335 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
import tailwindcss from '@tailwindcss/vite'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react(), tailwindcss()],
|
||
|
|
server: {
|
||
|
|
port: 5174,
|
||
|
|
proxy: {
|
||
|
|
'/api': 'https://api.longde.cloud',
|
||
|
|
'/admin-api': 'https://api.longde.cloud',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|