diff --git a/.env.production b/.env.production
index 104678f..25ac8f5 100644
--- a/.env.production
+++ b/.env.production
@@ -1 +1 @@
-VITE_URL:/containers/lucasdelanier-portfolio/
\ No newline at end of file
+VITE_BASE_URL:'/containers/lucasdelanier-portfolio/'
\ No newline at end of file
diff --git a/env.d.ts b/env.d.ts
new file mode 100644
index 0000000..7deb611
--- /dev/null
+++ b/env.d.ts
@@ -0,0 +1,3 @@
+interface ImportMetaEnv {
+ VITE_BASE_URL: string
+}
\ No newline at end of file
diff --git a/public/i18n/en.json b/public/i18n/en.json
index 5de2ee5..d2f35d3 100644
--- a/public/i18n/en.json
+++ b/public/i18n/en.json
@@ -5,7 +5,7 @@
"copy": "Copy",
"about": "About",
"skills": "Skills",
- "experiences": "Experience",
+ "experiences": "Experiences",
"projects": "Projects",
"welcome-message": "Hey, I'm Lucas",
"catch-phrase": "Developer &
Designer of applications",
diff --git a/public/i18n/fr.json b/public/i18n/fr.json
index f975019..4538f3e 100644
--- a/public/i18n/fr.json
+++ b/public/i18n/fr.json
@@ -5,7 +5,7 @@
"copy": "Copier",
"about": "À propos",
"skills": "Compétences",
- "experiences": "Expérience",
+ "experiences": "Expériences",
"projects": "Projets",
"welcome-message": "Salut, je suis Lucas",
"catch-phrase": "Developpeur &
Designer d'applications",
diff --git a/src/components/GridSkill.vue b/src/components/GridSkill.vue
index 488dc0c..3d246cf 100644
--- a/src/components/GridSkill.vue
+++ b/src/components/GridSkill.vue
@@ -41,13 +41,12 @@ const skills = [
alt: "communication icon"
}
];
-const url = import.meta.env.BASE_URL;
-