mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
7fc89cc0f4
Absolutely no idea how this was passing in the integration test setup For Webpack, setting it via the config was previously completely ignored and only the `--profile` flag was respected Turbopack was already working correctly: https://github.com/vercel/next.js/pull/84920
8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
export default function Root({ children }) {
|
|
return (
|
|
<html>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|