gseps-front/next.config.js

9 lines
142 B
JavaScript
Raw Normal View History

2023-08-23 07:50:10 +00:00
/** @type {import('next').NextConfig} */
2023-08-23 08:12:52 +00:00
const nextConfig = {
compiler: {
styledComponents: true,
},
};
2023-08-23 07:50:10 +00:00
2023-08-23 08:12:52 +00:00
module.exports = nextConfig;