Files
nextjs-server-fetching/presentation/next.config.js
2024-01-16 23:53:33 +01:00

19 lines
391 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
serverActions: true,
},
// Avoiding CORS issues
// async rewrites() {
// return [
// {
// source: '/api/:slug*',
// destination: 'http://localhost:3000/api/:slug*'
// }
// ]
// }
}
module.exports = nextConfig