z1amez commited on
Commit
372817d
·
1 Parent(s): 7af0b31

Final build fix for Vercel

Browse files
Files changed (2) hide show
  1. client/package.json +1 -1
  2. client/src/main.tsx +1 -1
client/package.json CHANGED
@@ -5,7 +5,7 @@
5
  "type": "module",
6
  "scripts": {
7
  "dev": "vite",
8
- "build": "tsc -b && vite 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.tsx'
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>