From b5df09f5ecd565f9419d46e9f2aeeedf280b0fbc Mon Sep 17 00:00:00 2001 From: antoinezanardi Date: Wed, 3 Mar 2021 22:35:43 +0100 Subject: [PATCH] fix(Windows): Broken styles on Windows. Closes #140 --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 83e4bce..7a6b3f3 100644 --- a/src/App.vue +++ b/src/App.vue @@ -62,7 +62,7 @@ export default { htmlAttrs: { lang: i18n.t("App.metaInfo.lang") }, title: i18n.t("App.metaInfo.title"), meta: [ - { charset: "UTF-8" }, + { charset: "utf-8" }, { name: "viewport", content: "width=device-width, initial-scale=1.0" }, { "http-equiv": "X-UA-Compatible", "content": "IE=edge" }, { name: "description", content: i18n.t("App.metaInfo.description") },