* ci: add docker smoke test to ci * fix alpine version * fix * fix space * fix space * comment out * docker fixes * docker fixes * docker fixes * docker fixes * docker fixes
14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
// Disable request logging in production
|
|
logging: false,
|
|
// Set the monorepo root explicitly to avoid detecting wrong lockfiles in parent directories
|
|
turbopack: {
|
|
root: path.resolve(__dirname, '..'),
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|