12 lines
244 B
JavaScript
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;
|