Spaces:
Sleeping
Sleeping
Final build fix for Vercel
Browse files- client/package.json +1 -1
- client/src/main.tsx +1 -1
client/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
"type": "module",
|
| 6 |
"scripts": {
|
| 7 |
"dev": "vite",
|
| 8 |
-
"build": "
|
| 9 |
"lint": "eslint .",
|
| 10 |
"preview": "vite preview"
|
| 11 |
},
|
|
|
|
| 5 |
"type": "module",
|
| 6 |
"scripts": {
|
| 7 |
"dev": "vite",
|
| 8 |
+
"build": "vite build",
|
| 9 |
"lint": "eslint .",
|
| 10 |
"preview": "vite preview"
|
| 11 |
},
|
client/src/main.tsx
CHANGED
|
@@ -3,7 +3,7 @@ import { createRoot } from 'react-dom/client'
|
|
| 3 |
import { QueryClientProvider } from '@tanstack/react-query'
|
| 4 |
import { queryClient } from './lib/react-query'
|
| 5 |
import './index.css'
|
| 6 |
-
import App from './App
|
| 7 |
|
| 8 |
createRoot(document.getElementById('root')!).render(
|
| 9 |
<StrictMode>
|
|
|
|
| 3 |
import { QueryClientProvider } from '@tanstack/react-query'
|
| 4 |
import { queryClient } from './lib/react-query'
|
| 5 |
import './index.css'
|
| 6 |
+
import App from './App'
|
| 7 |
|
| 8 |
createRoot(document.getElementById('root')!).render(
|
| 9 |
<StrictMode>
|