* Add self host setup * Improve blunders * Move to bull mq * More changes * Add example code for sending test emails
18 lines
442 B
JavaScript
18 lines
442 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,
|
|
esmExternals: "loose",
|
|
serverComponentsExternalPackages: ["bullmq"],
|
|
},
|
|
};
|
|
|
|
export default config;
|