homepage/src/pages/api/theme.js
2022-10-08 16:04:24 +03:00

15 lines
337 B
JavaScript

import checkAndCopyConfig, { getSettings } from "utils/config/config";
export default function handler({ res }) {
checkAndCopyConfig("settings.yaml");
const settings = getSettings();
const color = settings.color || "slate";
const theme = settings.theme || "dark";
return res.status(200).json({
color,
theme,
});
}