mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-07 04:22:04 +00:00
🎉 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>
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
plugins: [sveltekit()],
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.{js,ts}']
|
|
}
|
|
};
|
|
|
|
export default config;
|