rsnext/test/e2e/app-dir/app-routes/next.config.js
Wyatt Johnson aca83d2a09
Move App Route handler logic into bundle (#47633)
Previously the app route handler was included in the server bundle, and called into user code to execute the underlying handler logic. This PR serves to move the handler code into the bundle so that the Node.js environment more closely matches the Edge environment.

This also updates the Rust code for the new loader.
fix NEXT-712 ([link](https://linear.app/vercel/issue/NEXT-712))
2023-03-29 19:31:30 +00:00

11 lines
157 B
JavaScript

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