Files
next-portfolio/next.config.mjs
2024-04-25 20:18:27 +01:00

15 lines
291 B
JavaScript

import million from "million/compiler";
/** @type {import('next').NextConfig} */
const nextConfig = {
swcMinify: true,
reactStrictMode: true,
output: "standalone",
};
const millionConfig = {
auto: { rsc: true }, rsc: true
}
export default million.next(nextConfig, millionConfig);