skbeta/next.config.js
Christopher Arraya d4a1772ffd fix type errors
2024-01-13 21:17:04 -05:00

16 lines
341 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
compiler: {
styledComponents: true,
},
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
};
module.exports = nextConfig;