一个老项目,直接 yarn start 运行时样式没有加载。先说一下采坑过程:
之前写过一篇 create-react-app中CSS Module不生效的解决办法 ,但这个项目是自编码,需要 npm link 到主项目,所以就不能使用 CSS Module 写样式了。
页面都是使用 import './lindex.less';
引入样式文件的。
所以直接运行,就不能加载样式。把配置文件中的 modules: true
删掉就可以了。
test: cssRegex, exclude: cssModuleRegex, use: getStyleLoaders({ importLoaders: 1, // modules: true, sourceMap: isEnvProduction && shouldUseSourceMap, })
本文关键词:create-react-app页面样式不生效的解决办法、create-react-app样式不生效、create-react-app CSS Module配置、create-react-app中使用CSS Module、create-react-app中CSS Module的使用方法
未经允许不得转载:前端资源网 - w3h5 » create-react-app项目样式不生效的一种解决方法