Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经创建了反应组件库,并且我在组件库中使用样式加载器
但是在我使用该库的地方,我需要一个文件中的 css。有没有办法用提取文本插件做到这一点?
是的。从库使用者,导入/请求库的样式表,并使用提取文本插件配置使用者的 Webpack 配置。
在 webpack 的模块规则中,使用文件加载器将所有 css 输出到 main.min.css 文件,并在使用应用程序中引用它。
use: [{ loader: 'file-loader', options: { name: 'css/main.min.css', }, },