- Spring Boot 3.2.1 + React 19 프로젝트 구조 - S&P Global Maritime API Bypass 및 Risk & Compliance Screening 기능 - 팀 워크플로우 v1.6.1 적용 (settings.json, hooks, workflow-version) - 프론트엔드 빌드 (Vite + TypeScript + Tailwind CSS) - 메인 카드 레이아웃 CSS Grid 전환 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
457 B
TypeScript
22 lines
457 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: {
|
|
'/snp-global/api': {
|
|
target: 'http://localhost:8031',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
base: '/snp-global/',
|
|
build: {
|
|
outDir: '../src/main/resources/static',
|
|
emptyOutDir: true,
|
|
},
|
|
})
|