rsnext/test/e2e/app-dir/actions/next.config.js
Shu Ding 772f3e7509
Add experimental React related warning (#47986)
For now, this isn't a strong requirement as normal `fetch` requests will
still work with `react@next`. But in the future, form related props e.g.
`action=` and `formAction=` requires the experimental build.

Fixes NEXT-954.
2023-04-10 14:37:23 +02:00

7 lines
132 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
experimental: {
appDir: true,
experimentalReact: true,
},
}