我已经阅读了大多数帖子,但是仍然无法弄清楚为什么我的应用程序不显示图像。我在React应用程序中使用webpack 4+。
我的webpack配置:
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
mode: 'development',
entry: { main: './src/index.js' },
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
module: {
rules: [
{
test: /\.(html)$/,
use: ['html-loader'],
},
{
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['@babel/preset-env', '@babel/preset-react'],
},
},
{
test: /\.(s*)css$/,
use: [
'style-loader',
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader',
],
},
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {},
},
],
},
],
},
plugins: [
new MiniCssExtractPlugin({
filename: 'style.css',
})
],
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
},
devServer: {
historyApiFallback: true,
contentBase: './',
watchOptions: {
aggregateTimeout: 300,
poll: 1000,
},
},
};
然后,我在组件<img src={require('../assets/GGGlogo.png')} />
之一中调用一个图像JSX标签,其中Assets文件夹也包含在我的src文件夹中。当我运行webpack开发服务器时,所有内容都可以成功编译,并且应用程序启动。
但是,我的Chrome控制台输出:GET http://localhost:8080/app/b561359832a3836146dd3f42233e77f7.png 404 (Not Found)
当我运行dev脚本使用bundle.js和图像创建dist文件夹时,上面的哈希确实是我想要的图像。尝试查找图像时为什么会出现404错误?