Обновил пакеты, включил polyfill для популярных версий браузеров
All checks were successful
/ build (push) Successful in 5m1s
/ deploy (push) Successful in 57s

This commit is contained in:
Иван Кузьменко 2025-11-26 23:57:19 +03:00
parent 5822e64c84
commit d79d323f17
4 changed files with 2801 additions and 755 deletions

16
vite.config.ts Normal file
View file

@ -0,0 +1,16 @@
import { sveltekit } from '@sveltejs/kit/vite';
import tailwindcss from "@tailwindcss/vite";
import type { UserConfig } from 'vite';
import legacy from '@vitejs/plugin-legacy';
export default {
plugins: [
sveltekit(),
tailwindcss(),
legacy({
targets: 'defaults',
modernPolyfills: true,
renderLegacyChunks: false
})
]
} satisfies UserConfig;