Skip to content

Commit 26479d9

Browse files
committed
chore: revert overrides
1 parent 12158ce commit 26479d9

File tree

7 files changed

+112
-504
lines changed

7 files changed

+112
-504
lines changed

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@
7878
"react-router-dom": "*"
7979
}
8080
}
81-
},
82-
"overrides": {
83-
"vite": "npm:[email protected]",
84-
"@vitejs/plugin-react": "workspace:@vitejs/plugin-react-oxc@*"
8581
}
8682
}
8783
}

playground/compiler-react-18/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export default defineConfig(({ command }) => {
77
server: { port: 8901 /* Should be unique */ },
88
plugins: [
99
react({
10-
// @ts-expect-error babel plugins are not supported
1110
babel: {
1211
plugins: [['babel-plugin-react-compiler', { target: '18' }]],
1312
},

playground/compiler/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export default defineConfig(({ command }) => {
1010

1111
return {
1212
server: { port: 8900 /* Should be unique */ },
13-
// @ts-expect-error babel plugins are not supported
1413
plugins: [react({ babel: { plugins: babelPlugins } })],
1514
}
1615
})

playground/react-classic/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const config: UserConfig = {
55
server: { port: 8903 /* Should be unique */ },
66
plugins: [
77
react({
8-
// @ts-expect-error classic jsx runtime is not supported
98
jsxRuntime: 'classic',
109
}),
1110
],

playground/react-emotion/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ export default defineConfig({
66
plugins: [
77
react({
88
jsxImportSource: '@emotion/react',
9-
// @ts-expect-error babel plugins are not supported
109
babel: {
1110
plugins: ['@emotion/babel-plugin'],
1211
},

playground/react-sourcemap/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const config: UserConfig = {
55
server: { port: 8906 /* Should be unique */ },
66
plugins: [
77
react({
8-
// @ts-expect-error classic runtime is not supported
98
jsxRuntime: process.env.USE_CLASSIC === '1' ? 'classic' : 'automatic',
109
}),
1110
],

0 commit comments

Comments
 (0)