当我尝试使用webpack 构建SASS文件时,出现以下错误:
找不到模块:错误:无法解析模块“文件加载器”
请注意,仅当我尝试使用相对路径加载背景图像时,才会发生此问题。
这项工作很好:
background:url(http://localhost:8080/images/magnifier.png);
这会导致问题:
background:url(../images/magnifier.png);
这是我的项目结构
- 图片
- 样式
- webpack.config.js
这是我的webpack文件:
var path = require('path');
module.exports = {
entry: {
build: [
'./scripts/app.jsx',
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server'
]
},
output: {
path: path.join(__dirname, 'public'),
publicPath: 'http://localhost:8080/',
filename: 'public/[name].js'
},
module: {
loaders: [
{test: /\.jsx?$/, loaders: ['react-hot', 'babel?stage=0'], exclude: /node_modules/},
{test: /\.scss$/, loaders: ['style', 'css', 'sass']},
{test: /\.(png|jpg)$/, loader: 'file-loader'},
{test: /\.(ttf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/, loader: 'file-loader'}
]
},
resolve: {
extensions: ['', '.js', '.jsx', '.scss', '.eot', '.ttf', '.svg', '.woff'],
modulesDirectories: ['node_modules', 'scripts', 'images', 'fonts']
}
};
我有完全相同的问题,以下内容已解决: