42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
await import('./src/env.mjs');
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
transpilePackages: [],
|
|
eslint: { ignoreDuringBuilds: true },
|
|
typescript: { ignoreBuildErrors: 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',
|
|
},
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: '/api/sdk/:path*',
|
|
headers: [
|
|
{ key: 'Access-Control-Allow-Credentials', value: 'true' },
|
|
{ key: 'Access-Control-Allow-Origin', value: '*' },
|
|
{ key: 'Access-Control-Allow-Methods', value: 'POST,PUT' },
|
|
// {
|
|
// key: 'Access-Control-Allow-Headers',
|
|
// value:
|
|
// 'X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version',
|
|
// },
|
|
],
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default config;
|