12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ['lighthouse', 'chrome-launcher'],
|
|
outputFileTracingIncludes: {
|
|
'/api/insight': ['./node_modules/lighthouse/**/*'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|