This commit is contained in:
2025-08-14 11:40:02 -04:00
parent ccea5db9e9
commit dbb70fc743
7 changed files with 112 additions and 38 deletions

View File

@@ -1,10 +1,10 @@
---
import { metaData, API_URL } from "../config";
import { metaData, ENVIRONMENT } from "../config";
import RandomMsg from "../components/RandomMsg";
import { buildTime, buildNumber } from '../utils/buildTime.js';
const YEAR = new Date().getFullYear();
var ENVIRONMENT = (Astro.url.hostname === "localhost") ? "Dev": "Prod";
---