mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-11 23:58:46 +00:00
14 lines
337 B
JavaScript
14 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,
|
|
});
|
|
}
|