Made client/[name] generate static pages
All checks were successful
checks-impure / test (pull_request) Successful in 26s
checks / test (pull_request) Successful in 1m19s

This commit is contained in:
2024-01-23 00:17:24 +01:00
parent d54206f43c
commit 6f4bab98c1
7 changed files with 45 additions and 13 deletions

View File

@@ -2,9 +2,16 @@
const nextConfig = {
output: "export",
images: { unoptimized: true },
distDir: "build",
eslint: {
dirs: ["src"],
},
generateBuildId: async () => {
// This could be anything, using the latest git hash
return process.env.NEXT_BUILD_ID;
},
outputFileTracing: true,
reactStrictMode: true,
};
module.exports = nextConfig;