Files
mikayla-dobson-dev/next.config.js

12 lines
244 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['js', 'jsx', 'ts', 'tsx'],
reactStrictMode: true,
experimental: {
// mdxRs: true,
serverActions: true,
}
}
module.exports = nextConfig;