利用創建反應的應用程序內創建如何添加陣營,Flexbox的網格裝載機webpack.config.dev.js文件
{
test: /\.css$/,
loader: 'style!css?importLoaders=1!postcss'
}
安裝陣營,Flexbox的網格使用下列基本網絡的數據包配置NPM命令
npm i -S react-flexbox-grid
安裝以下依賴性
npm i -D npm style-loader css-loader
它接縫陣營-Flexbox的網格未被拾取b y網絡加載器。我的問題在於如何將React-FlexBox-Grid添加到現有的css加載程序配置中。從陣營,Flexbox的網格文件https://github.com/roylee0704/react-flexbox-grid提出了兩種設置,我不知道該
1)
{
test: /\.css$/,
loader: 'style!css?modules',
include: /flexboxgrid/,
}
2)
{
test: /\.css$/,
loader: 'style!css!postcss',
include: path.join(__dirname, 'node_modules'), // oops, this also includes flexboxgrid
exclude: /flexboxgrid/, // so we have to exclude it
}
不知道如何如何添加裝載機沒有打破現有的工作配置。
感謝。我用{test:/\.css$/ loader:'style!css?modules'替換,包括:/ flexboxgrid /,},現有的並且工作正常。任何方式我學會了如何從這個答案加載多個CSS加載器。 :) – Prabhakaran