mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
18 lines
332 B
JavaScript
18 lines
332 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
plugins: [sveltekit()],
|
|
optimizeDeps: {
|
|
include: ['echarts']
|
|
},
|
|
ssr: {
|
|
noExternal: ['echarts']
|
|
},
|
|
legacy: {
|
|
buildSsrCjsExternalHeuristics: true
|
|
}
|
|
};
|
|
|
|
export default config;
|