init project structer
This commit is contained in:
21
apps/web/next.config.js
Normal file
21
apps/web/next.config.js
Normal file
@@ -0,0 +1,21 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
reactStrictMode: true,
|
||||
|
||||
// Static Export - Build to pure HTML/CSS/JS
|
||||
output: 'export',
|
||||
|
||||
// Disable features not supported in static export
|
||||
images: {
|
||||
unoptimized: true,
|
||||
},
|
||||
|
||||
// Optional: add trailing slash
|
||||
trailingSlash: true,
|
||||
|
||||
// Optional: if Go serves from /app path
|
||||
// basePath: '/app',
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
||||
|
||||
Reference in New Issue
Block a user