-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix page freeze upon returning (#20)
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
3f5ff56
There was a problem hiding this comment.
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