mirror of
https://github.com/SkalaraAI/skbeta.git
synced 2025-04-03 20:10:20 -04:00
16 lines
341 B
JavaScript
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;
|