[examples] Upgrade SvelteKit template to 1.0.0 (#9070)

🎉 Kit is live! 🎉 

Merge prior to #9030. Manually updates Kit to latest (will need to have
a commit pushed after 1.0 goes live on NPM).

Co-authored-by: Steven <steven@ceriously.com>
This commit is contained in:
S. Elliott Johnson
2022-12-14 14:18:20 -07:00
committed by GitHub
parent 363dfef68c
commit 0e4c7fa74a
42 changed files with 16533 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
import { sveltekit } from '@sveltejs/kit/vite';
/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
};
export default config;