2e66def057
Turbopack cannot resolve lightningcss native .node binaries at build time. Reverting to webpack for production builds (Turbopack dev server still works via next dev --turbopack flag). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|