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.
30 lines
705 B
30 lines
705 B
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 = `<?xml version="1.0" encoding="utf-8"?>
|
|
<browserconfig>
|
|
<msapplication>
|
|
<tile>
|
|
<square150x150logo src="/mstile-150x150.png?v=2"/>
|
|
<TileColor>${themes[color][theme]}</TileColor>
|
|
</tile>
|
|
</msapplication>
|
|
</browserconfig>`;
|
|
|
|
res.setHeader("Content-Type", "text/xml");
|
|
res.write(xml);
|
|
res.end();
|
|
|
|
return {
|
|
props: {},
|
|
};
|
|
}
|
|
|
|
export default function BrowserConfig() {}
|