Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 409 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 409 Bytes

Sveltekit Adapter

Adapter for Svelte apps that creates a Begin or Architect app, using a function for dynamic server rendering.

Configuration

run npm install @architect/sveltekit-adapter.

Then add the adapter to your svelte.config.js:

import begin from '@architect/sveltekit-adapter';

export default {
	kit: {
		...
		adapter: begin()
	}
};