mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-09-22 00:44:52 +02:00
21 lines
396 B
TypeScript
21 lines
396 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
optimizeDeps: {
|
|
exclude: ['argon2', 'argon2-browser']
|
|
},
|
|
ssr: {
|
|
noExternal: ['@noble/hashes', '@noble/post-quantum', 'secrets.js-34r7h']
|
|
},
|
|
define: {
|
|
global: 'globalThis'
|
|
},
|
|
server: {
|
|
fs: {
|
|
allow: ['..']
|
|
}
|
|
}
|
|
});
|