Files
NekoFlow/apps/web/next.config.js
2025-10-08 14:12:48 +07:00

22 lines
414 B
JavaScript

/** @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