rsnext/test/e2e/app-dir/actions/next.config.js
Shu Ding 9bd00a8896
Add test case for client sourcemaps (#49308)
This PR adds a test case to ensure that the server reference doesn't expose actual content of the original file in its sourcemap.

Closes NEXT-1041.
2023-05-05 14:23:04 +00:00

7 lines
147 B
JavaScript

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