wisesplit/next.config.js

13 lines
235 B
JavaScript
Raw Normal View History

2022-10-24 07:10:52 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
2022-10-24 07:18:22 +00:00
typescript: {
// TODO: Move fast and break things lmao
ignoreBuildErrors: true,
},
};
module.exports = nextConfig;