CSS类出现但未应用样式-REACTSTRAP-CSS模块

时间:2018-09-05 05:48:59

标签: css reactjs css-modules reactstrap

我使用create-react-app创建了一个应用程序。我通过配置webpack文件来使用CSS模块。当我使用reactstrap时,会出现Bootstrap类,但样式不适用。

遵循https://reactstrap.github.io/上的说明

也将CSS导入到index.js文件中,但是样式不适用。

 {
            test: /\.css$/,
            use: [
              require.resolve('style-loader'),
              {
                loader: require.resolve('css-loader'),
                options: {
                  importLoaders: 1,
                  modules: true,
                  localIdentName: '[name]__[local]__[hash:base64:5]'
                },
              },
              {
                loader: require.resolve('postcss-loader'),
                options: {
                  // Necessary for external CSS imports to work
                  // https://github.com/facebookincubator/create-react-app/issues/2677
                  ident: 'postcss',
                  plugins: () => [
                    require('postcss-flexbugs-fixes'),
                    autoprefixer({
                      browsers: [
                        '>1%',
                        'last 4 versions',
                        'Firefox ESR',
                        'not ie < 9', // React doesn't support IE8 anyway
                      ],
                      flexbox: 'no-2009',
                    }),
                  ],
                },
              },
            ],
      },

我尝试导入'!style-loader!css-loader!bootstrap / dist / css / bootstrap.css'; https://github.com/reactstrap/reactstrap/issues/778

但是它抛出一个错误。'意外的符号!'

enter image description here

2 个答案:

答案 0 :(得分:1)

尝试一下:

在src / index.js文件import 'bootstrap/dist/css/bootstrap.min.css';中导入Bootstrap CSS。

让我知道是否有帮助。

答案 1 :(得分:0)

我通过使用Bootstrap CSS作为CDN解决了问题。