Sunstead trust scoring project
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 472 B View raw
1import { sveltekit } from '@sveltejs/kit/vite'; 2import Icons from 'unplugin-icons/vite'; 3import { defineConfig } from 'vite'; 4 5export default defineConfig({ 6 plugins: [sveltekit(), Icons({ compiler: 'svelte' })], 7 // Lightning CSS handles the @layer cascade in app.css. No browser targets set 8 // ponytail: internal dashboard, modern browsers only; add targets if old browsers matter. 9 css: { transformer: 'lightningcss' }, 10 build: { cssMinify: 'lightningcss' }, 11});