-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improve the main page code, Lighthouse found that the text parts were slowing stuff down * CSS improvements across the site * Next.JS 15 and React 19 * React Compiler * Mobile improvements
- Loading branch information
Showing
26 changed files
with
1,116 additions
and
896 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export default { | ||
basePath: "", | ||
output: "export", | ||
reactStrictMode: true, | ||
compress: true, | ||
images: { | ||
unoptimized: true, | ||
dangerouslyAllowSVG: true | ||
}, | ||
experimental: { | ||
optimizeCss: true, | ||
optimisticClientCache: true, | ||
typedRoutes: true, | ||
optimizeServerReact: true, | ||
serverMinification: true, | ||
reactCompiler: true, | ||
staleTimes: { | ||
dynamic: 30 | ||
}, | ||
} | ||
} satisfies import("next").NextConfig; |
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
Oops, something went wrong.