Skip to content

Commit

Permalink
Fix page freeze upon returning (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
excalith authored Mar 29, 2023
1 parent 3205090 commit 3f5ff56
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone"
output: "standalone",
headers: () => [
{
source: "/:path*",
headers: [
{
key: "Cache-Control",
value: "no-store"
}
]
}
]
}

module.exports = nextConfig

1 comment on commit 3f5ff56

@vercel
Copy link

@vercel vercel bot commented on 3f5ff56 Mar 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

start-page – ./

excalith-start-page.vercel.app
start-page-excalith.vercel.app
start-page-git-main-excalith.vercel.app

Please sign in to comment.