mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com> Signed-off-by: lancechant <13349722+lancechant@users.noreply.github.com> Co-authored-by: Fredrik Burmester <fredrik.burmester@gmail.com> Co-authored-by: Uruk <contact@uruk.dev> Co-authored-by: Gauvain <68083474+Gauvino@users.noreply.github.com>
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { ScrollViewStyleReset } from "expo-router/html";
|
|
import { type PropsWithChildren } from "react";
|
|
|
|
/**
|
|
* This file is web-only and used to configure the root HTML for every web page during static rendering.
|
|
* The contents of this function only run in Node.js environments and do not have access to the DOM or browser APIs.
|
|
*/
|
|
export default function Root({ children }: PropsWithChildren) {
|
|
return (
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charSet='utf-8' />
|
|
<meta httpEquiv='X-UA-Compatible' content='IE=edge' />
|
|
<meta
|
|
name='viewport'
|
|
content='width=device-width, initial-scale=1, shrink-to-fit=no'
|
|
/>
|
|
|
|
{/*
|
|
Disable body scrolling on web. This makes ScrollView components work closer to how they do on native.
|
|
However, body scrolling is often nice to have for mobile web. If you want to enable it, remove this line.
|
|
*/}
|
|
<ScrollViewStyleReset />
|
|
|
|
{/* Using raw CSS styles as an escape-hatch to ensure the background color never flickers in dark-mode. */}
|
|
<style />
|
|
{/* Add any additional <head> elements that you want globally available on web... */}
|
|
</head>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|