full-stack-svelte-kit
v0.0.7
Published
This framework is built on top of `@sveltejs/kit`.
Downloads
2
Maintainers
Readme
Full Stack Svelte Kit
This framework is built on top of @sveltejs/kit
.
Features
- [x] Server-Only Load Functions
- [x] Remix Like Actions/Loader Functions which run only on the Server.
- [ ] Easy Form Handling
- [X] Easy Meta Tags / SEO Handling (Only title and description, currently)
For an early example please look into this example repo.
Getting Started
npm install -D full-stack-svelte-kit
...
import fullStackKit from 'full-stack-svelte-kit';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: [
preprocess({
postcss: true
}),
fullStackKit()
],
};
export default config;