File size: 350 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
env: {
// Matches the behavior of `sanity dev` which sets styled-components to use the fastest way of inserting CSS rules in both dev and production. It's default behavior is to disable it in dev mode.
SC_DISABLE_SPEEDY: "false",
},
};
export default nextConfig;
|