wisesplit/next.config.js

14 lines
206 B
JavaScript
Raw Permalink 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:40:14 +00:00
compiler: {
styledComponents: true,
},
2022-10-25 18:26:48 +00:00
typescript: {},
2022-10-24 07:18:22 +00:00
};
module.exports = nextConfig;