tonybark.com/vite.config.ts
2024-12-03 10:07:06 -08:00

9 lines
222 B
TypeScript

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
}
});