Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions documentation/docs/30-advanced/25-errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ Since SvelteKit 2.54 and Svelte 5.53, you can change this by enabling the experi

```js
/// file: svelte.config.js
// @errors: 2353
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/30-advanced/40-service-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Inside the service worker you have access to the [`$service-worker` module]($ser
The following example caches the built app and any files in `static` eagerly, and caches all other requests as they happen. This would make each page work offline once visited.

```js
// @errors: 2688
// @errors: 2688, 2307
/// file: src/service-worker.js
// Disables access to DOM typings like `HTMLElement` which are not available
// inside a service worker and instantiates the correct globals
Expand Down
1 change: 1 addition & 0 deletions documentation/docs/30-advanced/68-observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Both of these features are currently experimental, meaning they are likely to co

```js
/// file: svelte.config.js
// @errors: 2353
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
Expand Down