We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd660da commit c917d2cCopy full SHA for c917d2c
1 file changed
Website/next.config.ts
@@ -1,20 +1,6 @@
1
/** @type {import('next').NextConfig} */
2
const nextConfig = {
3
output: 'standalone',
4
- // Ensure static files are properly handled in standalone mode
5
- experimental: {
6
- outputFileTracingIncludes: {
7
- '/': ['./public/**/*'],
8
- },
9
10
- // Configure the standalone build to include static assets
11
- generateBuildId: async () => {
12
- return 'build-' + Date.now()
13
14
- // Add this to ensure proper static file handling
15
- trailingSlash: false,
16
- // Configure asset optimization
17
- assetPrefix: process.env.NODE_ENV === 'production' ? '' : '',
18
}
19
20
module.exports = nextConfig
0 commit comments