import { getSettings } from "utils/config/config"; import themes from "utils/styles/themes"; export async function getServerSideProps({ res }) { const settings = getSettings(); const color = settings.color || "slate"; const theme = settings.theme || "dark"; const xml = ` ${themes[color][theme]} `; res.setHeader("Content-Type", "text/xml"); res.write(xml); res.end(); return { props: {}, }; } export default function BrowserConfig() {}