tonybark.com/vite.config.ts

10 lines
222 B
TypeScript
Raw Normal View History

2024-12-03 10:07:06 -08:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
build: {
target: 'esnext' //browsers can handle the latest ES features
}
});