Skip to content

Commit

Permalink
fix: serve all from the public route
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Jan 29, 2024
1 parent 0b1c6e7 commit 6e22c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ if (!isDev) {
fastify.get('/signout', serveIndex);
fastify.get('/account*', serveIndex);
fastify.get('/terms', serveIndex);
fastify.get('/public', serveIndex);
fastify.get('/public*', serveIndex);
}

const startServer = async () => {
Expand Down

0 comments on commit 6e22c41

Please sign in to comment.