From 93cb9b24701c09b92820204a67c1fc1b3c044708 Mon Sep 17 00:00:00 2001 From: Yassine Doghri <yassine@doghri.fr> Date: Fri, 21 Jan 2022 14:56:17 +0000 Subject: [PATCH] fix: add admin-audio-player to vite config to have admin player show up --- vite.config.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 861c45bea1..f43f05bf18 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -13,14 +13,15 @@ export default defineConfig({ sourcemap: true, rollupOptions: { input: { - "podcast.ts": "js/podcast.ts", - "install.ts": "js/install.ts", - "app.ts": "js/app.ts", + "admin-audio-player.ts": "js/admin-audio-player.ts", "admin.ts": "js/admin.ts", - "charts.ts": "js/charts.ts", - "map.ts": "js/map.ts", + "app.ts": "js/app.ts", "audio-player.ts": "js/audio-player.ts", + "charts.ts": "js/charts.ts", "embed.ts": "js/embed.ts", + "install.ts": "js/install.ts", + "map.ts": "js/map.ts", + "podcast.ts": "js/podcast.ts", "styles/index.css": "styles/index.css", }, }, -- GitLab