Tee Ming
Tee Ming
Please provide a working minimal reproduction that reproduces the issue.
https://kit.svelte.dev/docs/modules Is this considered an API reference? I have been using this section for most of time with SvelteKit. Would renaming it make it more recognisable as such?
learn.svelte.dev is now complete and linked in https://kit.svelte.dev/docs/introduction
The following workaround does it for me ([as mentioned by William](https://github.com/sveltejs/kit/issues/8742#issuecomment-1407449856)). For whatever reason it only works when the `baseUrl` option is included. `/tsconfig.json` ```json { "extends": "./.svelte-kit/tsconfig.json", "compilerOptions": {...
> what about this? > > `Error: Cannot find package '$app' imported from ...`? See https://github.com/sveltejs/kit/issues/1485
It doesn't seem like there's a straight-forward fix at the moment. There are a few examples in that issue of people mocking the $app module for their testing frameworks.
Related to https://github.com/sveltejs/kit/pull/9073 . Perhaps we need some way to tell the builder to only copy client assets, rather than copying both over. In some cases the double CSS output...
You can try adding the config option below and see if it helps. This should reduce the duplicate CSS files until #9382 or otherwise is merged ```js // svelte.config.js export...
With the duplicate CSS issue fixed in https://github.com/sveltejs/kit/pull/9382 Should we have an adapter level option to include/exclude server/client assets? Instead of bundling both together where the server ones aren't used(?)...
> How do we end up with different server/client CSS now that #9382 has been merged? The URL paths in the CSS are resolved differently for server and client (absolute...