17 lines
362 B
Text
17 lines
362 B
Text
|
---
|
||
|
const url = `${Astro.request.canonicalURL.origin}/company.json`;
|
||
|
const response = await fetch(url);
|
||
|
const data = await response.json();
|
||
|
---
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width" />
|
||
|
<title>Astro</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Astro</h1>
|
||
|
<div>{JSON.stringify(data)}</div>
|
||
|
</body>
|
||
|
</html>
|