14 lines
284 B
Plaintext
14 lines
284 B
Plaintext
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
import tailwindcss from '@tailwindcss/vite'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react(), tailwindcss()],
|
||
|
|
server: {
|
||
|
|
host: true,
|
||
|
|
proxy: {
|
||
|
|
'/api': 'http://localhost:3001',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|