Material UI、CSS Modules、Next.js:为什么当 JS 禁用时样式不应用?

问题描述 投票:0回答:2

我正在开发我的第一个 Material UI - CSS 模块 - Next.js 项目。

问题:
当我在 Chrome 开发工具中禁用 JS 时,样式不会应用。 现在,我不明白这是否与 Material UI 有关?或者也许是我导入样式的方式?

我现在找不到任何答案。任何帮助表示赞赏。非常感谢!!

这是一些相关代码:

//pages/_document.js
import React from 'react';
import Document, { Html, Head, Main, NextScript } from 'next/document';
import { ServerStyleSheets } from '@material-ui/core/styles';
import theme from './_theme';

export default class MyDocument extends Document {
  render() {
    return (
      <Html lang="en">
        <Head>
          <meta name="theme-color" content={theme.palette.primary.main} />
          <link
            rel="stylesheet"
            href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
          />
        </Head>
        <body>
          <Main />
          <NextScript />
        </body>
      </Html>
    );
  }
}

MyDocument.getInitialProps = async (ctx) => {
  const sheets = new ServerStyleSheets();
  const originalRenderPage = ctx.renderPage;

  ctx.renderPage = () =>
    originalRenderPage({
      enhanceApp: (App) => (props) => sheets.collect(<App {...props} />),
    });

  const initialProps = await Document.getInitialProps(ctx);

  return {
    ...initialProps,
    styles: [...React.Children.toArray(initialProps.styles), sheets.getStyleElement()],
  };
};



//pages/_app.js
import React from "react";
import "../styles/global.css";
import { ThemeProvider } from "@material-ui/core/styles";
import theme from "./_theme";
import CssBaseline from "@material-ui/core/CssBaseline";

function MyApp({ Component, pageProps }) { 
  React.useEffect(() => {
    const jssStyles = document.querySelector("#jss-server-side");
    if (jssStyles) {
      jssStyles.parentElement.removeChild(jssStyles);
    }
  }, []);
  
  return (
    <>
      <ThemeProvider theme={theme}>
        <CssBaseline>
              <Component {...pageProps} />
        </CssBaseline>
      </ThemeProvider>
    </>
  );
}

export default MyApp;



//componentXYZ.js -> I import styles like this
import Input from "@material-ui/core/Input"; //from material ui
import styles from "./componentXYZ.module.css //other styles

javascript css material-ui next.js css-modules
2个回答
1
投票

问题与您的代码无关

Next.js 文档指出了这一点:

如果禁用 JavaScript,CSS 仍将在生产版本中加载(下次启动)。在开发过程中,我们要求启用 JavaScript,以便通过快速刷新提供最佳的开发人员体验。”

文档参考


0
投票
运行本地 Next.js 开发服务器时,需要使用 JS 来查看 CSS。

运行构建后服务器端渲染完成后,在生产中第一次使用样式渲染时不需要 JS。接下来的服务器将发送所有 HTML 和 CSS 作为预渲染的静态文件。

© www.soinside.com 2019 - 2024. All rights reserved.