Add Infinite Platinum Option #346

Closed
VampireKitten wants to merge 12 commits from vamp-dev into main
Showing only changes of commit e14f0fede9 - Show all commits

View File

@ -1,9 +1,7 @@
import { RequestHandler } from "express";
import path from "path";
const rootDir = path.join(__dirname, "../../..");
import configFile from "@/config.json";
const getConfigData: RequestHandler = (_req, res) => {
const configFile = require(path.join(rootDir, "config.json"));
res.json(configFile);
};