mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 21:07:48 +00:00
14 lines
356 B
TypeScript
14 lines
356 B
TypeScript
import type { MetaFunction } from "@vercel/remix";
|
|
|
|
export const config = { runtime: "edge" };
|
|
|
|
export const meta: MetaFunction = () => [{ title: "Remix@Edge | New Remix App" }];
|
|
|
|
export default function Edge() {
|
|
return (
|
|
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.4" }}>
|
|
<h1>Welcome to Remix@Edge</h1>
|
|
</div>
|
|
);
|
|
}
|