9 lines
199 B
TypeScript
Executable File
9 lines
199 B
TypeScript
Executable File
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import contentCollections from "@content-collections/vite";
|
|
|
|
const config = {
|
|
plugins: [sveltekit(), contentCollections()]
|
|
};
|
|
|
|
export default config;
|