From c56a81d43321d0f1c1a3e76eab948036d9c9f618 Mon Sep 17 00:00:00 2001 From: Taehoon Date: Fri, 19 Jun 2026 13:43:52 +0900 Subject: [PATCH] =?UTF-8?q?style:=20=EA=B4=80=EB=A6=AC=EC=9E=90=20?= =?UTF-8?q?=EB=AA=A8=EB=93=9C(Map=20Editor)=20CSS=20=EB=88=84=EB=9D=BD=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0=20=EB=B0=8F=20Vite=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=B9=8C=EB=93=9C=20=EA=B5=AC?= =?UTF-8?q?=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- map_editor.html | 4 +++- vite.config.ts | 9 +++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/map_editor.html b/map_editor.html index ea0b683..443d92e 100644 --- a/map_editor.html +++ b/map_editor.html @@ -5,8 +5,10 @@ ITAM Map Coordinate Editor v3.0 + + - +
diff --git a/vite.config.ts b/vite.config.ts index 56b1c1c..b5a8bda 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -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'), + } + } + } });