diff options
Diffstat (limited to 'apps/kit')
| -rw-r--r-- | apps/kit/src/app.html | 22 | ||||
| -rw-r--r-- | apps/kit/src/global.d.ts | 6 |
2 files changed, 14 insertions, 14 deletions
diff --git a/apps/kit/src/app.html b/apps/kit/src/app.html index 9d1d0ae..308b223 100644 --- a/apps/kit/src/app.html +++ b/apps/kit/src/app.html @@ -1,12 +1,14 @@ <!DOCTYPE html> <html class="h-full bg-white" lang="en"> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width" /> - <script src="%sveltekit.assets%/preload.js"></script> - %sveltekit.head% - </head> - <body class="h-full"> - <div>%sveltekit.body%</div> - </body> -</html> + +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width" /> + %sveltekit.head% +</head> + +<body class="h-full"> + <div>%sveltekit.body%</div> +</body> + +</html>
\ No newline at end of file diff --git a/apps/kit/src/global.d.ts b/apps/kit/src/global.d.ts index e49922a..13f5e16 100644 --- a/apps/kit/src/global.d.ts +++ b/apps/kit/src/global.d.ts @@ -1,13 +1,11 @@ /// <reference types="@sveltejs/kit" /> -type Locales = import('$i18n/i18n-types').Locales -type TranslationFunctions = import('$i18n/i18n-types').TranslationFunctions +type Locales = import('$lib/i18n/i18n-types').Locales +type TranslationFunctions = import('$lib/i18n/i18n-types').TranslationFunctions declare namespace App { interface Locals { locale: Locales LL: TranslationFunctions } - - // interface Platform { } }
\ No newline at end of file |
