mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
24 lines
540 B
JavaScript
24 lines
540 B
JavaScript
import adapter from '@sveltejs/adapter-auto';
|
|
import preprocess from 'svelte-preprocess';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: preprocess(),
|
|
compilerOptions: {
|
|
accessors: process.env.VITEST
|
|
},
|
|
kit: {
|
|
adapter: adapter(),
|
|
paths: {
|
|
base: ''
|
|
},
|
|
prerender: {
|
|
default: false
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|