summaryrefslogtreecommitdiff
path: root/examples/non-html-pages
diff options
context:
space:
mode:
Diffstat (limited to 'examples/non-html-pages')
-rw-r--r--examples/non-html-pages/src/pages/company.json.ts13
1 files changed, 6 insertions, 7 deletions
diff --git a/examples/non-html-pages/src/pages/company.json.ts b/examples/non-html-pages/src/pages/company.json.ts
index ecff4458e..c931c0e15 100644
--- a/examples/non-html-pages/src/pages/company.json.ts
+++ b/examples/non-html-pages/src/pages/company.json.ts
@@ -1,9 +1,8 @@
export async function get() {
- return {
- body: JSON.stringify({
- name: 'Astro',
- url: 'https://astro.build/',
- }),
- };
+ return {
+ body: JSON.stringify({
+ name: 'Astro',
+ url: 'https://astro.build/',
+ }),
+ };
}
-