Skip to content
This repository was archived by the owner on Oct 30, 2025. It is now read-only.

Commit 46439bd

Browse files
Merge pull request #56 from dyte-io/fix/builds
fix: swc plugin dependancy
2 parents 7b8883b + 6efd066 commit 46439bd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

samples/chat-widget/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@types/react-dom": "^18.2.14",
2929
"@typescript-eslint/eslint-plugin": "^6.9.1",
3030
"@typescript-eslint/parser": "^6.9.1",
31-
"@vitejs/plugin-react-swc": "^3.4.1",
31+
"@vitejs/plugin-react": "^4.3.0",
3232
"autoprefixer": "^10.4.16",
3333
"eslint": "^8.53.0",
3434
"eslint-config-prettier": "^9.0.0",

samples/chat-widget/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import react from '@vitejs/plugin-react-swc';
1+
import react from '@vitejs/plugin-react';
22
import { defineConfig } from 'vite';
33

44
// https://vitejs.dev/config https://vitest.dev/config

samples/clubhouse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"devDependencies": {
2222
"@types/react": "^18.0.24",
2323
"@types/react-dom": "^18.0.8",
24-
"@vitejs/plugin-react": "^2.2.0",
24+
"@vitejs/plugin-react": "^4.3.0",
2525
"autoprefixer": "^10.4.14",
2626
"clsx": "^1.2.1",
2727
"postcss": "^8.4.24",

samples/clubhouse/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { defineConfig } from 'vite';
21
import react from '@vitejs/plugin-react';
2+
import { defineConfig } from 'vite';
33

44
// https://vitejs.dev/config/
55
export default defineConfig({

samples/create-your-own-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"devDependencies": {
2121
"@types/react": "^18.0.24",
2222
"@types/react-dom": "^18.0.8",
23-
"@vitejs/plugin-react-swc": "^3.8.1",
23+
"@vitejs/plugin-react": "^4.3.0",
2424
"autoprefixer": "^10.4.16",
2525
"postcss": "^8.4.30",
2626
"prettier": "^3.0.3",

samples/create-your-own-ui/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { defineConfig } from 'vite';
2-
import react from '@vitejs/plugin-react-swc';
2+
import react from '@vitejs/plugin-react';
33

44
// https://vitejs.dev/config/
55
export default defineConfig({

0 commit comments

Comments
 (0)