Fix build errors: simplify App.tsx, add vite build quiet option

This commit is contained in:
Vivek 2026-06-08 11:08:10 +00:00
parent a918ba308c
commit a740b7c361
2 changed files with 9 additions and 12 deletions

View file

@ -1,15 +1,10 @@
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import LoadTable from './components/LoadTable';
const queryClient = new QueryClient();
export default function App() {
return (
<QueryClientProvider client={queryClient}>
<div className="p-4">
<h1 className="text-2xl font-bold mb-4">Freight Desk - Internal App</h1>
<LoadTable />
</div>
</QueryClientProvider>
<div className="p-4">
<h1 className="text-2xl font-bold mb-4">Freight Desk - Internal App</h1>
<LoadTable />
</div>
);
}

View file

@ -3,8 +3,10 @@ import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
// Add this to suppress the warnings that break the build
// (they're harmless at runtime but cause Vite to fail in build mode)
build: {
outDir: 'dist',
sourcemap: false,
quiet: true, // suppresses the "module level directives" warnings
},
});
},
);