# fix
- Create dan edit
- Bagikam WA
- Loading
## No isssue
This commit is contained in:
2024-05-22 14:08:17 +08:00
parent ce35aa8f51
commit 68e0a9a237
20 changed files with 2967 additions and 227 deletions

13
src/util/app_config.ts Normal file
View File

@@ -0,0 +1,13 @@
import os from "os";
const app_config = {
title: "Example Title",
description: "Example Description",
host:
os.platform() === "darwin"
? "http://localhost:3000"
: "https://test-hipmi.wibudev.com",
isLocal: os.platform() === "darwin",
};
export default app_config;