19 lines
412 B
JavaScript
19 lines
412 B
JavaScript
|
import createNextIntlPlugin from "next-intl/plugin"
|
||
|
|
||
|
const IS_STANDALONE = process.env.IS_STANDALONE === "true"
|
||
|
|
||
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
output: IS_STANDALONE ? "standalone" : undefined,
|
||
|
eslint: {
|
||
|
ignoreDuringBuilds: true,
|
||
|
},
|
||
|
typescript: {
|
||
|
ignoreBuildErrors: true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
const withNextIntl = createNextIntlPlugin()
|
||
|
|
||
|
export default withNextIntl(nextConfig)
|