Update fixtures with Prettier formatting

This commit is contained in:
James M. Greene
2022-08-05 15:40:25 -05:00
parent d949e1515f
commit da85ca493f
13 changed files with 47 additions and 61 deletions

View File

@@ -1,15 +1,15 @@
const getAllDynamicRoute = async function() {
const getAllDynamicRoute = async function () {
const routes = await (async () => {
return ['/posts/hello-world', '/posts/hello-again'];
})();
return routes;
};
return ['/posts/hello-world', '/posts/hello-again']
})()
return routes
}
export default {
mode: 'universal',
generate: {
async routes () {
return getAllDynamicRoute();
async routes() {
return getAllDynamicRoute()
}
}
};
}