alabuga/frontend/next.config.mjs
danilgryaznev e050bd46ef 1 vers
2025-09-21 19:30:55 +02:00

14 lines
269 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
compiler: {
styledComponents: true
},
experimental: {
serverComponentsExternalPackages: ['@reduxjs/toolkit']
}
};
export default nextConfig;