next.config.ts: disable eslint during build
This commit is contained in:
parent
8ab2205821
commit
82b64bb209
@ -3,6 +3,10 @@ import createNextIntlPlugin from 'next-intl/plugin';
|
|||||||
|
|
||||||
const withNextIntl = createNextIntlPlugin();
|
const withNextIntl = createNextIntlPlugin();
|
||||||
|
|
||||||
const nextConfig: NextConfig = {};
|
const nextConfig: NextConfig = {
|
||||||
|
eslint: {
|
||||||
|
ignoreDuringBuilds: true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default withNextIntl(nextConfig);
|
export default withNextIntl(nextConfig);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user