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'), + } + } + } });