Skip to content

Commit

Permalink
Website: solve TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Oct 11, 2023
1 parent 64fc440 commit 11d739a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 0 additions & 2 deletions docs/laravel/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ At the moment, we deployed our local codebase to Lambda. When deploying for prod

Follow [the deployment guide](/docs/deploy.md#deploying-for-production) for more details.

TODO

## Troubleshooting

In case your application is showing a blank page after being deployed, [have a look at the logs](../environment/logs.md).
Expand Down
7 changes: 2 additions & 5 deletions website/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,13 @@ module.exports = withNextra(withPlausibleProxy()({
.map(([source, destination]) => ({
source,
destination,
// TODO switch to true
permanent: false
permanent: true,
}));
return [
{
source: '/docs/:path*.html',
destination: '/docs/:path*',
// TODO enable permanent redirect when all pages are migrated
permanent: false,
// permanent: true,
permanent: true,
},
...redirectList,
]
Expand Down
1 change: 0 additions & 1 deletion website/src/pages/news/02-bref-2.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { NextSeo } from 'next-seo';
openGraph={{
images: [
{
// TODO move the image to a public folder
url: '/news/02-social-card.png',
},
],
Expand Down

0 comments on commit 11d739a

Please sign in to comment.