mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
compiler: {
|
|
styledComponents: true,
|
|
},
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|