diff --git a/mkdocs-website/docs/en/changelog.md b/mkdocs-website/docs/en/changelog.md index 025d13231..fae69ac36 100644 --- a/mkdocs-website/docs/en/changelog.md +++ b/mkdocs-website/docs/en/changelog.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fix Sveltekit template CSS referance by @atterpac in [#3945](https://github.com/wailsapp/wails/pull/3945) - [darwin] Ensure `windowDidBecomeKey` callback is running on main thread by [@leaanthony](https://github.com/leaanthony) - Ensure key callbacks in window run() are called on the main thread by [@leaanthony](https://github.com/leaanthony) - [darwin] Support fullscreen for frameless windows by [@leaanthony](https://github.com/leaanthony) diff --git a/v3/internal/templates/sveltekit-ts/frontend/src/app.html b/v3/internal/templates/sveltekit-ts/frontend/src/app.html index e1858401a..2db551d71 100644 --- a/v3/internal/templates/sveltekit-ts/frontend/src/app.html +++ b/v3/internal/templates/sveltekit-ts/frontend/src/app.html @@ -3,6 +3,7 @@
+ %sveltekit.head% diff --git a/v3/internal/templates/sveltekit/frontend/src/app.html b/v3/internal/templates/sveltekit/frontend/src/app.html index 2b3908e2c..d72bd3485 100644 --- a/v3/internal/templates/sveltekit/frontend/src/app.html +++ b/v3/internal/templates/sveltekit/frontend/src/app.html @@ -3,6 +3,7 @@ + %sveltekit.head%