From: Shane Jaroch Date: Mon, 26 Jan 2026 04:16:07 +0000 (-0500) Subject: fix(ci): swap legacy and sveltekit plugin order for Windows compatibility X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=485e8ea7107165059fc3d3aeaa970bd867f4721e;p=gamesguru%2Fwebsite-template-svkit-v2-legacy.git fix(ci): swap legacy and sveltekit plugin order for Windows compatibility --- diff --git a/vite.config.js b/vite.config.js index 9960b1f..48928e9 100644 --- a/vite.config.js +++ b/vite.config.js @@ -5,9 +5,9 @@ import legacy from '@vitejs/plugin-legacy'; export default defineConfig({ plugins: [ + sveltekit(), legacy({ targets: ['ie 11'] - }), - sveltekit() + }) ] });