diff options
Diffstat (limited to 'next.config.js')
| -rw-r--r-- | next.config.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/next.config.js b/next.config.js index 767719f..7b09dd4 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + compiler: { + styledComponents: true, + }, +}; -module.exports = nextConfig +module.exports = nextConfig; |
