14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
||
|
import adapter from 'sveltekit-adapter-deno';
|
||
|
|
||
|
/** @type {import('@sveltejs/kit').Config} */
|
||
|
const config = {
|
||
|
preprocess: vitePreprocess(),
|
||
|
|
||
|
kit: {
|
||
|
adapter: adapter()
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default config;
|