Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up dev dependencies #3710

Merged
merged 15 commits into from
Oct 1, 2024
Merged
6 changes: 1 addition & 5 deletions config/vitest.config.browser.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { defineConfig } from 'vitest/config'
import { nodePolyfills } from 'vite-plugin-node-polyfills'
import wasm from 'vite-plugin-wasm'

const config = defineConfig({
Expand All @@ -16,13 +15,10 @@ const config = defineConfig({
},
plugins: [
wasm(),
nodePolyfills({
include: ['util', 'fs', 'buffer', 'path'],
}),
],
optimizeDeps: {

exclude: ['kzg-wasm'],
include: ['vite-plugin-node-polyfills/shims/buffer', 'vite-plugin-node-polyfills/shims/global', 'vite-plugin-node-polyfills/shims/process']
},
})

Expand Down
Loading
Loading