mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
2f4e16038d
This reverts commit9c19f270fc, reversing changes made to5bfc75e03e.
23 lines
529 B
JavaScript
23 lines
529 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
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({
|
|
fallback: 'index.html'
|
|
}),
|
|
paths: {
|
|
base: ''
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|