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

11 lines
224 B
JavaScript

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