2 Commits

Author SHA1 Message Date
c9b8246218 Fix: route for frontend 2024-05-16 15:41:24 +02:00
c89dfa6786 Added: script for building website version 2024-05-15 03:04:16 +02:00
2 changed files with 5 additions and 4 deletions

View File

@@ -5,9 +5,9 @@ export const router = Router();
router.use("/api/v1", api_v1);
//router.get("*", (req: Request, res: Response) => {
// res.sendFile(path.join(__dirname, "../views/index.html"));
//});
router.get("*", (req: Request, res: Response) => {
res.sendFile(path.join(__dirname, "../public/index.html"));
});
// 404
router.use((req: Request, res: Response) => {

View File

@@ -6,7 +6,8 @@
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
"web": "expo start --web",
"build:web": "npx expo export"
},
"dependencies": {
"@expo/metro-runtime": "~3.2.1",