从 Create-React-App 升级到 Next.js - CSS 样式表不起作用

IT技术 reactjs create-react-app next.js server-side-rendering
2021-05-05 16:10:18

最近我们发现我们的 React 项目必须使用 SSR。我已经检查了我知道的每种方法,并且几乎测试了我在媒体和其他网站上找到的所有方法。经过大量工作,我决定我们必须迁移到 Next JS。

虽然迁移的过程一切正常,但对于样式表。

在我们的旧版本应用程序中,我们使用 webpack 将我们的样式与项目捆绑在一起,一切都很好。

这是 webpack.config.js

const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const port = process.env.PORT || 3000;
const extractSCSS = new ExtractTextPlugin('./[name].css');

// const UglifyJS = require('uglifyjs-webpack-plugin');
module.exports = {

  mode: 'development',
  output: {
    filename: 'bundle.[hash].js',
    publicPath: '/'
  },
  devtool: 'source-map',
  module: {
    rules: [

      // First Rule

      {
        test: /\.(js)$/,
        exclude: /node_modules/,
        use: ['babel-loader'],

      },

      // Second Rule

      {
        test: /\.scss$/,
        use: ['css-hot-loader'].concat(extractSCSS.extract({
          fallback: 'style-loader',
          use: [
            {
              loader: 'css-loader?sourceMap',
              options: { alias: { '../img': '../public/img' }, sourceMap: true }
            },
            {
              loader: 'sass-loader',
              options: {
                sourceMap: true
              }
            }
          ]
        }))
      },
      {
        test: /\.css$/,
        use: ['style-loader', 'css-loader']
      },

        {
        test: /\.(png|svg|jpg|gif)$/,
        use: [
          'file-loader'
        ]
      },
      {
        test: /\.(woff|woff2|eot|ttf|otf)$/,
        use: [
          'file-loader'
        ]
      }
    ]
  },
  plugins: [

    new HtmlWebpackPlugin({
      template: 'public/index.html',
      favicon: 'public/favicon.ico'

    }),


    extractSCSS,

  ],
  devServer: {
    host: 'localhost',
    port: port,
    historyApiFallback: true,
    open: true
  }
};

迁移应用程序后,我的 next.config.js 如下所示:

// next.config.js
const withSass = require('@zeit/next-sass')
const withCSS = require('@zeit/next-css')

module.exports = withCSS( withSass(
  {
    webpack(config, options) {
      config.module.rules.push({
        test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
        use: {
          loader: 'url-loader',
          options: {
            limit: 100000
          }
        }
      },
      )

      return config
    },

  }
))

问题是一切都正确呈现,但其中没有样式表,也不包含任何样式。有没有人可以帮我解决这个问题?

4个回答

仅仅使用来自 node_modules 的 CSS,你不需要这个花哨的配置。

3个简单步骤:

  1. 安装 next-css 插件:
npm install --save @zeit/next-css
  1. 在根目录下创建 next.config.js ,内容如下:
// next.config.js 
const withCSS = require('@zeit/next-css')

module.exports = withCSS({
  cssLoaderOptions: {
    url: false
  }
})
  1. 现在你应该能够像这样从 node_modules 导入样式表:
import 'bootstrap-css-only/css/bootstrap.min.css';

注意:使用 Next v 8+

背景: 我花了几个小时试图简单地导入作为 node_module 安装的 CSS,各种解决方案大多是 hacky 解决方法,但如上所示,有一个简单的解决方案。它由核心团队成员之一提供:https : //spectrum.chat/next-js/general/ignoring-folders-files-specifically-fonts~4f68cfd5-d576-46b8-adc8-86e9d7ea0b1f

这不是一个真正的答案,但 Next.js 中的 CSS 简直太烂了!我发现自己一直在努力使其工作,所以我决定遵循他们的文档并简单地使用:

const App = () => {
  return (
    {style}
    <div/>
  );
}

let style = (<style jsx>
{`
.someClass {}
`}
</style> )

export default App;

通过这种方式,您可以像在常规 HTML 中一样拥有 CSS,而无需任何外部导入

来源

你不需要 withCSS 和 withSass 插件。

如果您使用 Sass,withSass 插件会将其编译为 CSS。

只需确保在Head组件内的 _document.js 文件中添加 CSS 文件的路径,如下所示:

<Head>
  <link rel="stylesheet" href="/_next/static/style.css" />
</Head>

对于导入 css,您可以使用nextJS 的Head组件。

import Head from 'next/head';
<Head>
    <link rel="stylesheet" href="path of the css" />
</Head>