rsnext/examples/with-emotion-swc/next.config.js

10 lines
157 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compiler: {
emotion: true,
},
}
module.exports = nextConfig