webpack 1から3に移行しています。非常に多くのエラーが発生したので、ここで取り組んでいます。誰かを喜ばせることができますHELP!css-loader sass-loaderの解析エラー
私は、これらのエラーを取得しています -
ERROR in ./src/main/main.scss
Module parse failed: Unexpected token (1:4)
You may need an appropriate loader to handle this file type.
| body{
| color: red;
| }
@ ./src/main/js/App.jsx 13:0-23
@ ./src/main/js/index.jsx
ここではサンプルのレポだ - https://github.com/shivamkumar110/webpack-3-test
、ここでは私のwebpack.config.js
module: {
rules: [
{
test: /\.jsx?$/,
use: ['eslint-loader'],
include: SRC,
enforce: 'pre'
}, {
test: /\.jsx?$/,
use: ['babel-loader'],
include: SRC
}, {
test: /(\.css|\.scss)$/,
include: SRC,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{
loader:'css-loader',
options: {
sourceMap:true
}
},
{
loader: 'sass-loader',
options: {
sourceMap: true
}
}
]
})
},
私は両方をやってみました。私はサスローダーを使用しています。まだ動かない。 : –
@ShivamKumarあなたの完全な 'webpack.config.js'と' package.json'を含むようにOPを更新できますか? –
@私は既に私のレポへのリンクを提供しています - https://github.com/shivamkumar110/webpack -3-test –