Files
GibSend/apps/web/next.config.js
2025-05-15 21:40:31 +10:00

26 lines
570 B
JavaScript

/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
* for Docker builds.
*/
await import("./src/env.js");
/** @type {import("next").NextConfig} */
const config = {
output: process.env.DOCKER_OUTPUT ? "standalone" : undefined,
experimental: {
instrumentationHook: true,
serverComponentsExternalPackages: ["bullmq"],
esmExternals: "loose",
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "www.gravatar.com",
},
],
},
};
export default config;