Node-based static servers (serve, http-server) were returning 404 for CSS files. Switched to output: "export" in Next.js config and nginx as the production static file server. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
113 B
JavaScript
7 lines
113 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
};
|
|
|
|
export default nextConfig;
|