Skip to content

Commit

Permalink
fix: switch order of vite plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Apr 17, 2024
1 parent 5222c8a commit 6bcbd12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 6bcbd12

Please sign in to comment.