vortex/next.config.js

38 lines
872 B
JavaScript
Raw Permalink Normal View History

2024-03-15 15:47:32 +08:00
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
* for Docker builds.
*/
2024-03-25 16:09:27 +08:00
import createNextIntlPlugin from "next-intl/plugin";
2024-03-15 15:47:32 +08:00
await import("./src/env.js");
2024-03-25 16:09:27 +08:00
const withNextIntl = createNextIntlPlugin();
2024-03-15 15:47:32 +08:00
/** @type {import("next").NextConfig} */
const config = {
experimental: {
instrumentationHook: true,
serverComponentsExternalPackages: ["pino"],
forceSwcTransforms: true,
},
images: {
remotePatterns: [
{
hostname: "raw.githubusercontent.com",
},
],
},
output: "standalone",
reactStrictMode: false,
webpack: (config, options) => {
config.externals.push({ "thread-stream": "commonjs thread-stream" });
config.module = {
...config.module,
exprContextCritical: false,
};
return config;
},
};
2024-03-25 16:09:27 +08:00
export default withNextIntl(config);