lora-studio / vite.config.ts
enzostvs's picture
enzostvs HF staff
vite config allow absolute path
b42246f
raw
history blame
288 Bytes
import { sveltekit } from '@sveltejs/kit/vite';
import { enhancedImages } from '@sveltejs/enhanced-img';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [
enhancedImages(),
sveltekit()
],
server: {
fs: {
strict: false,
allow: [".."]
}
}
});