mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-03 14:03:40 +01:00
15 lines
337 B
JavaScript
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,
|
|
});
|
|
}
|