0

我正在尝试使我的 webpack.config 与子文件夹中的图像一起使用。我遇到了麻烦。我花了最后一天半的时间在互联网上搜索并阅读各种解决方案,但无济于事。

我的 src 文件是:

/src/图像/数据/

/src/容器

我的问题是:我有一条路由:http://localhost:7771/games/O从 /src/containers 加载 在该页面上,我正在尝试加载 /src/images/data/NotFound.png

如果我使用:调用图像, <img src="../images/data/NotFound.png"/>则图像显示没有任何问题。

但是,如果我将路径更改为,<img src={require("../images/data/NotFound.png")}/>则图像不会显示。当我使用 Chrome 开发人员工具检查图像时,我看到该元素显示为: <img src="images/data/NotFound.png"> 如果我悬停 src 链接,我会看到:http://localhost:7771/games/images/data/NotFound.png 但是如果我尝试打开它链接,图片加载不出来。

悬停链接

如果我改为导航到http://localhost:7771/images/data/NotFound.png,则会加载图像。

我尝试使用别名进行解析并将图像更改为<img src={require("~/data/NotFound.png")}>但结果相同,图像未加载。

这就是为什么我认为我的 webpack.config 搞砸了,我需要一些帮助来找出它有什么问题,以便我的图像可以显示。

var webpack = require('webpack');
var path = require('path');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var CircularDependencyPlugin = require('circular-dependency-plugin');
var BUILD_DIR =  path.resolve(__dirname,'htmlhot');
var APP_DIR = path.resolve(__dirname, 'src');
// Load environment variables from .env file. Suppress warnings using silent
// if this file is missing. dotenv will never modify any environment variables
// that have already been set.
// https://github.com/motdotla/dotenv
require('dotenv').config({silent: true});

var config = {
  context: path.join(__dirname, "src"),
    devtool: 'source-map',
  entry: [
      //'webpack/hot/dev-server',
    // reload controls falling back to page refresh if hot reload fails (  rare ).
    // change to false to debug hot reloading, so you can see the errors before it refreshes the page.
     'webpack-hot-middleware/client?reload=true',
    //  'webpack-hot-middleware/client?path=/__webpack_hmr&timeout=20000',
      APP_DIR + '/index.js'
      ],

  output: {
    path: path.join(__dirname, "src"),
    filename: 'bundle-hot.js'
  },
  resolve: {
    modules: [
        path.join(__dirname, 'src/'),
        'node_modules/'
    ],
    alias: {
        '~':  APP_DIR + '/images/'
    }
  },
  watch: true,
  watchOptions: {
    poll: true,
    aggregateTimeout: 300,
    number: 1000
  },
  module : {
    loaders : [
      {
        test : /\.jsx?/,
        include : APP_DIR,
        exclude: /node_modules/,
        loaders: ['react-hot-loader', 'babel-loader?' + JSON.stringify({
        cacheDirectory: true,
        plugins: [
            'transform-runtime',
            'react-html-attrs',
            'transform-class-properties',
            'transform-decorators-legacy'
        ],
        presets: ['es2015', 'react', 'stage-2']
        })]
      },
      // CSS
      // "css" loader resolves paths in CSS and adds assets as dependencies.
      // "style" loader turns CSS into JS modules that inject <style> tags.
      // In production, we use a plugin to extract that CSS to a file, but
      // in development "style" loader enables hot editing of CSS.
      {
        test: /\.css$/,
        include: path.join(__dirname, 'src/style'),
        loader: 'style-loader!css-loader'
      },
      // "file" loader makes sure those assets get served by WebpackDevServer.
      // When you `import` an asset, you get its (virtual) filename.
      // In production, they would get copied to the `build` folder.
      {
        test: /\.(ico|jpg|png|gif|eot|otf|webp|svg|ttf|woff|woff2)(\?.*)?$/,
        exclude: /\/favicon.ico$/,
        loader: 'file-loader',
        query: {
            name: '[path][name].[ext]'
        }
      },
      {
        test: /\.(ico)(\?.*)?$/,
        exclude: /node_modules/,
        loader: 'file-loader',
        query: {
            name: '.images/[name].[ext]'
        }
      }
    ]
  },

    // use EnableCircularDependencyPlugin=true|false to check the option
    plugins: (function() {
        var plugins = [
            new CopyWebpackPlugin([
                { from: APP_DIR + '/index.html', to: BUILD_DIR + '/index.html' },
                { from: APP_DIR + '/images/', to: BUILD_DIR + '/images/' }
            ]),
            new webpack.HotModuleReplacementPlugin(),
            new webpack.NoEmitOnErrorsPlugin(),
            new webpack.DefinePlugin({
                __DEVTOOLS__: true  // <-------- DISABLE redux-devtools HERE
            })
        ];

        // HERE IS OPTION CONDITION
        // edit .env file change to EnableCircularDependencyPlugin=false will bypass it
        if (process.env.EnableCircularDependencyPlugin=="true") {
            plugins.push(new CircularDependencyPlugin({
                // exclude detection of files based on a RegExp
                exclude: /a\.js|node_modules/,
                // add errors to webpack instead of warnings
                failOnError: true
            }));
        }

        return plugins;
    })(),
    node: {
        net: 'empty',
        dns: 'empty'
    }
};

module.exports = config;
4

1 回答 1

3

file-loader方面output.publicPath,因为你没有设置一个,它使用相对于的路径,output.path并且在使用不同的路线时不起作用。要修复它,只需将公共路径设置为/

output: {
  path: path.join(__dirname, "src"),
  filename: 'bundle-hot.js',
  publicPath: '/'
},

file-loaderpublicPath如果您不想设置,也有一个选项output.publicPath,因为它也会影响其他加载器,但这通常是您想要的,因此推荐。有了这个,你会得到:

<img src="/images/data/NotFound.png">

您也不需要复制images目录,因为file-loader会复制您导入的图像。事实上,它使用复制文件的 URL。所以你应该把它从 中删除CopyWebpackPlugin,除非你有没有被 webpack 处理的图像。

于 2017-03-17T15:17:08.290 回答