mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
27 lines
525 B
JavaScript
27 lines
525 B
JavaScript
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
logging:{
|
|
fetches:{
|
|
fullUrl:false
|
|
}
|
|
},
|
|
|
|
/**
|
|
* If you are using `appDir` then you must comment the below `i18n` config out.
|
|
*
|
|
* @see https://github.com/vercel/next.js/issues/41980
|
|
*/
|
|
i18n: {
|
|
locales: ["en"],
|
|
defaultLocale: "en",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|