lora-studio / vite.config.ts
enzostvs's picture
enzostvs HF staff
add api route to return image
309cbbe
raw
history blame
309 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: [".."],
// },
// }
});