10 lines
155 B
TypeScript
Raw Normal View History

2024-03-23 22:19:49 +00:00
export const config = { runtime: "edge" }
2023-06-23 03:59:14 +00:00
2024-03-23 22:19:49 +00:00
export default function Edge() {
2023-06-23 03:59:14 +00:00
return (
2023-06-27 00:27:19 +00:00
<div>
<h1>Welcome to Thingtime@Edge</h1>
2023-06-23 03:59:14 +00:00
</div>
2023-06-27 00:27:19 +00:00
)
2023-06-23 03:59:14 +00:00
}