Skip to content

Commit 63f1962

Browse files
authored
Merge pull request #39 from devops-actions/copilot/fix-38
Fix React version mismatch and Spark dependency resolution errors
2 parents a34ef17 + 99e345c commit 63f1962

4 files changed

Lines changed: 12 additions & 11 deletions

File tree

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"octokit": "^4.1.2",
6767
"react": "^19.1.0",
6868
"react-day-picker": "^9.6.7",
69-
"react-dom": "^19.0.0",
69+
"react-dom": "^19.1.0",
7070
"react-hook-form": "^7.54.2",
7171
"react-resizable-panels": "^2.1.7",
7272
"recharts": "^2.15.1",

vite.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { defineConfig } from 'vite';
2+
import tailwindcss from "@tailwindcss/vite";
23
import react from '@vitejs/plugin-react-swc';
34
import { resolve } from 'path';
45

@@ -25,7 +26,7 @@ const getBasePath = () => {
2526

2627
// https://vitejs.dev/config/
2728
export default defineConfig({
28-
plugins: [react()],
29+
plugins: [react(), tailwindcss()],
2930
base: getBasePath(),
3031
build: {
3132
outDir: 'dist',
File renamed without changes.

0 commit comments

Comments
 (0)