wisesplit/next.config.js
2022-10-24 02:40:14 -05:00

17 lines
283 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
compiler: {
styledComponents: true,
},
typescript: {
// TODO: Move fast and break things lmao
ignoreBuildErrors: true,
},
};
module.exports = nextConfig;