diff --git a/example/bot-edit.html b/example/bot-edit.html index 09c76ca..1ebef3d 100644 --- a/example/bot-edit.html +++ b/example/bot-edit.html @@ -189,6 +189,6 @@ - + diff --git a/example/bot-list.html b/example/bot-list.html index f2c2c3a..2f8aa83 100644 --- a/example/bot-list.html +++ b/example/bot-list.html @@ -110,6 +110,6 @@ - + diff --git a/example/bot-logs.html b/example/bot-logs.html index 2eaf4a1..1d51a25 100644 --- a/example/bot-logs.html +++ b/example/bot-logs.html @@ -218,6 +218,6 @@ - + diff --git a/example/vite.config.js b/example/vite.config.js index d63edfc..a8d3d49 100644 --- a/example/vite.config.js +++ b/example/vite.config.js @@ -2,6 +2,16 @@ import { defineConfig } from "vite"; export default defineConfig({ base: "./", + build: { + rollupOptions: { + input: { + index: "./index.html", + botList: "./bot-list.html", + botEdit: "./bot-edit.html", + botLogs: "./bot-logs.html", + }, + }, + }, server: { open: true, },