Update README.md with setup instructions, project stack details, chat functionality, and PocketBase integration information.

This commit is contained in:
Ezekiel Ewing
2026-02-07 12:02:57 -06:00
parent 894d10eed6
commit ffef3b14a1
43 changed files with 2059 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
alias: {
$lib: './src/lib',
'$lib/*': './src/lib/*'
}
}
};
export default config;