Initial commit

Created from https://vercel.com/new
This commit is contained in:
LukeHagar
2022-12-18 01:30:55 +00:00
commit 77b5d916b5
38 changed files with 16468 additions and 0 deletions

11
vite.config.js Normal file
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;