savage-tracking/next.config.js

28 lines
576 B
JavaScript
Raw Permalink Normal View History

2023-12-21 08:24:14 -08:00
/**
* 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 = {
reactStrictMode: true,
/**
* 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",
},
2024-01-01 01:06:30 -08:00
eslint: {
ignoreDuringBuilds: true,
},
output: 'standalone', // for docker
2023-12-21 08:24:14 -08:00
};
export default config;