22 lines
451 B
TypeScript
22 lines
451 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: 5173,
|
||
|
|
proxy: {
|
||
|
|
'/snp-api/api': {
|
||
|
|
target: 'http://localhost:8041',
|
||
|
|
changeOrigin: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
base: '/snp-api/',
|
||
|
|
build: {
|
||
|
|
outDir: '../src/main/resources/static',
|
||
|
|
emptyOutDir: true,
|
||
|
|
},
|
||
|
|
})
|