parafiaborzeta/next.config.mjs

10 lines
165 B
JavaScript
Raw Normal View History

2024-05-30 10:12:50 -05:00
/** @type {import('next').NextConfig} */
2024-05-30 13:10:15 -05:00
const nextConfig = {
reactStrictMode: true,
compiler: {
styledComponents: true,
},
};
2024-05-30 10:12:50 -05:00
export default nextConfig;