gpt4 book ai didi

javascript - 需要帮助修复具有相对/绝对路径的 webpack.config

转载 作者:行者123 更新时间:2023-12-01 03:54:47 26 4
gpt4 key购买 nike

我正在尝试让我的 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但如果我尝试打开该链接,图像将无法加载。

hover link

如果我导航到 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;

最佳答案

文件加载器尊重 output.publicPath ,由于您没有设置,它使用相对于 output.path 的路径,并且在使用不同的路线时将不起作用。要修复它,只需将公共(public)路径设置为 /:

output: {
path: path.join(__dirname, "src"),
filename: 'bundle-hot.js',
publicPath: '/'
},
如果您不想设置 output.publicPath

file-loader 还有一个选项 publicPath,因为它会影响其他加载器也是如此,但这通常是您想要的,因此建议这样做。有了这个你将得到:

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

您也不需要复制 images 目录,因为 file-loader 将复制您导入的图像。事实上,它使用复制文件的 URL。因此,您应该从 CopyWebpackPlugin 中将其删除,除非您有未由 webpack 处理的图像。

关于javascript - 需要帮助修复具有相对/绝对路径的 webpack.config,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42859773/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com