From 6bcbd1262cb7b8964f522b93d568de96b5b64eea Mon Sep 17 00:00:00 2001 From: rvcas Date: Wed, 17 Apr 2024 18:05:27 -0400 Subject: [PATCH] fix: switch order of vite plugins --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index d1ba572..59cd8c1 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -6,7 +6,7 @@ import { nodePolyfills } from 'vite-plugin-node-polyfills'; import Icons from 'unplugin-icons/vite'; export default defineConfig({ - plugins: [sveltekit(), Icons({ compiler: 'svelte' }), wasm(), topLevelAwait(), nodePolyfills()], + plugins: [nodePolyfills(), sveltekit(), Icons({ compiler: 'svelte' }), wasm(), topLevelAwait()], resolve: { alias: { '@sinclair/typebox': '@sinclair/typebox',