style: 관리자 모드(Map Editor) CSS 누락 해결 및 Vite 멀티페이지 빌드 구성 추가
This commit is contained in:
@@ -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'),
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user