gpt4 book ai didi

javascript - Next.js 不在服务器端渲染中渲染 CSS

转载 作者:行者123 更新时间:2023-12-04 11:29:58 26 4
gpt4 key购买 nike

我使用 npx create-next-app 创建了 next.js 应用程序并且没有对其进行任何更改。
我注意到 imported .css样式在客户端渲染中正确渲染,但在服务器端渲染中不正确。
根据Next.js document导入的 .css 应该可以正常工作。
_app.js

import '../styles/globals.css'

function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}

export default MyApp
包.json
{
"name": "next-test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "10.0.9",
"react": "17.0.1",
"react-dom": "17.0.1"
}
}
企业社会责任:
enter image description here
固态硬盘
enter image description here

最佳答案

如果您未处于生产模式,这是正常行为。
文档说明了这一点:if you disable JavaScript the CSS will still be loaded in the production build (next start). During development, we require JavaScript to be enabled to provide the best developer experience with Fast Refresh. Reference

关于javascript - Next.js 不在服务器端渲染中渲染 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66729498/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com