mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
16 lines
492 B
JavaScript
16 lines
492 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
transpilePackages: ['@nextui-org/react', '@nextui-org/theme'],
|
|
swcMinify: true,
|
|
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
|
|
// redirects: require("./next-redirect"), TODO: enable this once we have the docs structure done
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: process.env.IS_VERCEL_ENV === "true",
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|