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)),