link prefetching

This commit is contained in:
Joseph Montanaro
2021-10-19 08:53:03 -07:00
parent 481eac817e
commit 18e8883063
6 changed files with 25 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
import { postData } from './all.json.js';
export async function get() {
return postData[0];
return {body: postData[0]};
}