diff options
author | 2022-02-25 16:19:44 +0000 | |
---|---|---|
committer | 2022-02-25 16:19:44 +0000 | |
commit | 00dda8e0560ca424c5ed00e546e1e1ebf3e94172 (patch) | |
tree | 43518e3957ae8ada861f584efc4be9e19bebaa4e /examples/non-html-pages/src | |
parent | c46db4ecbd1dfbe68679167b27e7f1d92e27f5fb (diff) | |
download | astro-00dda8e0560ca424c5ed00e546e1e1ebf3e94172.tar.gz astro-00dda8e0560ca424c5ed00e546e1e1ebf3e94172.tar.zst astro-00dda8e0560ca424c5ed00e546e1e1ebf3e94172.zip |
[ci] yarn format
Diffstat (limited to 'examples/non-html-pages/src')
-rw-r--r-- | examples/non-html-pages/src/pages/company.json.ts | 13 |
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/', + }), + }; } - |