style: 개인 PC 대시보드 및 관리자 모드(Map Editor) 가독성 향상 스타일 가이드라인 적용

This commit is contained in:
2026-06-19 13:52:47 +09:00
parent c6515c1b5d
commit cfad200eb6
3 changed files with 37 additions and 26 deletions

View File

@@ -1,4 +1,5 @@
import { defineConfig } from 'vite';
import { resolve } from 'path';
export default defineConfig({
server: {
@@ -15,4 +16,12 @@ export default defineConfig({
}
}
},
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
map_editor: resolve(__dirname, 'map_editor.html'),
}
}
}
});