diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-10-03 18:05:23 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-10-03 18:05:23 +0200 |
| commit | 2001c035fbb417ab0a3d42cfb04d17420bde4086 (patch) | |
| tree | 28dca31ca5317ae223e5603ebbfe62d09f9d88d8 /apps/kit/src | |
| parent | be0739585ecc67fca3677fa6c80cffaf4005abc6 (diff) | |
| download | greatoffice-2001c035fbb417ab0a3d42cfb04d17420bde4086.tar.xz greatoffice-2001c035fbb417ab0a3d42cfb04d17420bde4086.zip | |
refactor: Minor changes
Diffstat (limited to 'apps/kit/src')
| -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 |
