Files
gpx.studio/website/vite.config.ts

12 lines
330 B
TypeScript
Raw Normal View History

2024-04-03 16:13:42 +02:00
import { sveltekit } from '@sveltejs/kit/vite';
2024-07-05 17:13:19 +02:00
import { enhancedImages } from '@sveltejs/enhanced-img';
2024-04-03 16:13:42 +02:00
import { defineConfig } from 'vite';
2025-06-21 21:07:36 +02:00
import tailwindcss from '@tailwindcss/vite';
2024-04-03 16:13:42 +02:00
export default defineConfig({
2025-05-08 14:16:07 +02:00
ssr: {
noExternal: ['gpx'],
},
2026-04-06 14:26:19 +02:00
plugins: [enhancedImages(), tailwindcss(), sveltekit()],
2024-04-03 16:13:42 +02:00
});