2026-02-18 13:20:52 +00:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
|
/* config options here */
|
|
|
|
|
reactCompiler: true,
|
|
|
|
|
output: 'standalone',
|
2026-07-16 22:52:41 +00:00
|
|
|
// pdf-parse and its optional native canvas dependency must not be bundled by
|
|
|
|
|
// Turbopack/webpack — see src/lib/imageright/content-inspector.ts.
|
|
|
|
|
serverExternalPackages: ['pdf-parse', '@napi-rs/canvas'],
|
2026-02-18 13:20:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|