You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/src/pages/api/theme.js

15 lines
337 B

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,
});
}