mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
module.exports = {
|
|
target: 'serverless',
|
|
pageExtensions: ['jsx', 'js', 'mdx', 'md', 'ts', 'tsx'],
|
|
redirects: require('./next-redirect'),
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: process.env.IS_VERCEL_ENV === 'true'
|
|
}
|
|
};
|