Skip to content

Commit f4ffc7d

Browse files
committed
chore(www): use satisfies instead of T{}
1 parent 9472f49 commit f4ffc7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

www/svelte.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import adapter from '@sveltejs/adapter-static';
22
import type { Config } from '@sveltejs/kit';
33
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
44

5-
export default <Config>{
5+
export default {
66
// Consult https://svelte.dev/docs/kit/integrations
77
// for more information about preprocessors
88
preprocess: vitePreprocess(),
@@ -13,7 +13,7 @@ export default <Config>{
1313
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
1414
adapter: adapter()
1515
}
16-
};
16+
} satisfies Config;
1717

1818
/* Self-compilation setup: Do not edit! */
1919
if (process.env.COMPILE_JS === 'true') {

0 commit comments

Comments
 (0)