wisesplit/next.config.js

14 lines
206 B
JavaScript
Raw Permalink Normal View History

2022-10-24 02:10:52 -05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
2022-10-24 02:40:14 -05:00
compiler: {
styledComponents: true,
},
2022-10-25 13:26:48 -05:00
typescript: {},
2022-10-24 02:18:22 -05:00
};
module.exports = nextConfig;