From 63045951e17e34ab9293dcbffd3d2f5bb28040c6 Mon Sep 17 00:00:00 2001 From: Seb <144435+rmtsrc@users.noreply.github.com> Date: Mon, 19 Jun 2023 17:42:29 +0100 Subject: [PATCH] feat(config): allow app to run in a subfolder via BASE_URL (#461) * fix: allow hosting in subfolder via BASE_URL * Import baseUrl from config * Revert "Import baseUrl from config" This reverts commit 73c867ebc80e9c0ee54e6a75388a49d064a94cf9. * feat(config): fallback baseUrl to / * feat(config): fallback baseUrl to / --------- Co-authored-by: Corentin Thomasset --- index.html | 12 ++++++------ vite.config.ts | 5 ++++- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 12a46b72..e8b8a60e 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + IT Tools - Handy online tools for developers @@ -14,13 +14,13 @@ itemprop="description" content="Collection of handy online tools for developers, with great UX. IT Tools is a free and open-source collection of handy online tools for developers & people working in IT." /> - + - - - - + + + + diff --git a/vite.config.ts b/vite.config.ts index 38586764..a49ef19c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -16,6 +16,8 @@ import Icons from 'unplugin-icons/vite'; import IconsResolver from 'unplugin-icons/resolver'; import VueI18n from '@intlify/unplugin-vue-i18n/vite'; +const baseUrl = process.env.BASE_URL ?? '/'; + // https://vitejs.dev/config/ export default defineConfig({ plugins: [ @@ -55,7 +57,7 @@ export default defineConfig({ description: 'Aggregated set of useful tools for developers.', display: 'standalone', lang: 'fr-FR', - start_url: '/?utm_source=pwa&utm_medium=pwa', + start_url: `${baseUrl}?utm_source=pwa&utm_medium=pwa`, orientation: 'any', theme_color: '#18a058', background_color: '#f1f5f9', @@ -92,6 +94,7 @@ export default defineConfig({ }), Unocss(), ], + base: baseUrl, resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)),