Skip to content

Commit 103ba02

Browse files
committed
chore(deps): migrate frontend build stack to Vite 8
1 parent fde2018 commit 103ba02

4 files changed

Lines changed: 428 additions & 579 deletions

File tree

explorer/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"tailwindcss-animate": "1.0.7",
4949
"usehooks-ts": "3.1.1",
5050
"viem": "catalog:web3",
51-
"vite-tsconfig-paths": "5.1.4",
5251
"wagmi": "2.19.5"
5352
},
5453
"devDependencies": {
@@ -57,7 +56,7 @@
5756
"@types/react": "catalog:react",
5857
"@types/react-copy-to-clipboard": "5.0.7",
5958
"@types/react-dom": "catalog:react",
60-
"@vitejs/plugin-react": "4.7.0",
59+
"@vitejs/plugin-react": "6.0.1",
6160
"autoprefixer": "10.5.0",
6261
"eslint": "catalog:eslint",
6362
"eslint-plugin-import-x": "catalog:eslint",
@@ -70,8 +69,8 @@
7069
"tailwindcss": "3.4.19",
7170
"typescript": "catalog:core",
7271
"typescript-eslint": "catalog:eslint",
73-
"vite": "6.4.2",
72+
"vite": "8.0.10",
7473
"vite-plugin-radar": "catalog:react",
75-
"vite-plugin-svgr": "4.5.0"
74+
"vite-plugin-svgr": "5.2.0"
7675
}
7776
}

explorer/vite.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@ import react from "@vitejs/plugin-react";
44
import { defineConfig } from "vite";
55
import { VitePluginRadar } from "vite-plugin-radar";
66
import svgr from "vite-plugin-svgr";
7-
import tsconfigPaths from "vite-tsconfig-paths";
87

98
export default defineConfig({
109
plugins: [
1110
react(),
12-
tsconfigPaths({ projects: ["."] }),
1311
svgr(),
1412
VitePluginRadar({
1513
analytics: {
@@ -18,6 +16,7 @@ export default defineConfig({
1816
}),
1917
],
2018
resolve: {
19+
tsconfigPaths: true,
2120
alias: {
2221
"@": path.resolve(__dirname, "./src"),
2322
},

0 commit comments

Comments
 (0)