횡단설계(B06) 다음을 상세설계 → 수량산출 → 설계도서 순으로 재배열하고, 폴더 번호가 흐름과 일치하도록 이름을 맞바꾼다. - B08_DesignDetail → B07_DesignDetail, B07_Quantity → B08_Quantity (파일 접두어·식별자·라우트·locale 키 전량 스왑) - STAGE_KEYS 4=DESIGN_DETAIL, 5=QUANTITY 스왑 + 라우터 stage 리터럴 교체 - CAD 마운트 /b08-cad → /b07-cad (main.py·vite proxy·iframe URL), openwebcad Toolbar 라벨 B07로 수정 후 재빌드 - 유지: openwebcad postMessage 프로토콜 aislo:b08:*·패키지명(내부 식별자) - 기존 프로젝트 storage 폴더 rename + project_manifest 갱신, DB project_workflow_stages stage_no 4↔5 행 스왑 완료 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import { resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const __dirname = fileURLToPath(new URL(".", import.meta.url));
|
|
|
|
/**
|
|
* Vite 설정 — 임도 설계 웹앱 (Vanilla TS + Three.js)
|
|
*
|
|
* - root: A00_Common (index.html 위치)
|
|
* - 페이지 폴더(A01_Home 등)는 ../를 통해 접근
|
|
* - 0_old(구형 코드), venv(파이썬)는 빌드에서 제외
|
|
*/
|
|
export default {
|
|
root: "A00_Common",
|
|
publicDir: false,
|
|
cacheDir: "config/node_modules/.vite",
|
|
resolve: {
|
|
alias: {
|
|
"@ui": resolve(__dirname, "./ui_template"),
|
|
"@config": resolve(__dirname, "./config"),
|
|
"@util": resolve(__dirname, "./common_util"),
|
|
three: resolve(__dirname, "./config/node_modules/three"),
|
|
"maplibre-gl": resolve(__dirname, "./config/node_modules/maplibre-gl"),
|
|
},
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
open: false,
|
|
// 백엔드(FastAPI) 프록시 — config_frontend.ts의 API_BASE_URL과 정합
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:8000",
|
|
changeOrigin: true,
|
|
},
|
|
// B07 독립형 CAD 앱 — FastAPI 정적 마운트로 위임
|
|
"/b07-cad": {
|
|
target: "http://localhost:8000",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
outDir: "../config/node_modules/.build",
|
|
emptyOutDir: true,
|
|
target: "es2022",
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ["0_old"],
|
|
},
|
|
};
|