develop #24

Merged
TobaOjo merged 8 commits from develop into main 2025-12-12 08:33:37 +00:00
17 changed files with 447 additions and 127 deletions
Showing only changes of commit 3353ad6f8b - Show all commits

View File

@@ -6,7 +6,10 @@ import { AppProviders } from "./app/providers/AppProviders";
import "./index.css";
import Modal from "react-modal";
const router = createRouter({ routeTree });
const router = createRouter({
routeTree,
basepath: "/bayiq",
});
Modal.setAppElement("#root");

View File

@@ -9,7 +9,7 @@ export default defineConfig({
plugins: [
tanstackRouter({
target: "react",
autoCodeSplitting: true,
autoCodeSplitting: false,
}),
react(),
tailwindcss(),
@@ -22,4 +22,11 @@ export default defineConfig({
},
},
},
build: {
rollupOptions: {
output: {
manualChunks: undefined,
},
},
},
});