mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
This reverts commit f35b5f58eb846f4ceee1a97dc60ff4ad88518d80, reversing changes made to 3780a237fdb23c2196d47e2dc4a1f1073954d8f9.
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
module.exports = {
|
|
pageExtensions: ['jsx', 'js', 'mdx', 'md', 'ts', 'tsx'],
|
|
redirects: require('./next-redirect'),
|
|
reactStrictMode: false,
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: process.env.IS_VERCEL_ENV === 'true'
|
|
}
|
|
};
|