我有以下输出项目结构:
img
...
portfolio
masttech
index.html
index.html
...
index.html
以及以下源项目结构:
components
...
Portfolio
img
...
Masttech
img
...
index.js
template.pug
style.sass
index.js
template.pug
style.sass
Index
img
...
index.js
template.pug
style.sass
layout.pug
index.js
以及以下 webpack 配置:
context: __dirname,
entry: [
'./src/index.js'
],
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/'
},
devServer: {
publicPath: '/'
},
module: {
rules: [
...
{
test: /\.(png|svg|jpg|jpeg|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 8192,
name: 'img/[name].[hash:7].[ext]'
}
}
]
}
]
},
plugins: [
...
new HtmlWebpackPlugin({
filename: 'index.html',
template: './src/components/Index/template.pug'
}),
new HtmlWebpackPlugin({
filename: 'portfolio/masttech/index.html',
template: './src/components/Portfolio/Masttech/template.pug'
})
]
...
问题是我所有的图片网址都只是img/...
,它可以index.html
位于根目录但不适合子目录内的页面。如果我将他们的网址更改为绝对网址,/
我认为问题将得到解决,但我不知道该怎么做。如果我在加载程序的名称选项前加上/
,则根本无法访问图像。
例如,这就是我在内部需要图像的方式src/components/Portfolio/Masttech/template.pug
:img(src=require('./img/pic__structure.png')
在提供图像时将其转换为img/pic__structure.7b94b5f.png
,因此无法从输出img
目录访问它,因为img
文件夹位于根目录中,而页面位于portfolio/masttech
文件夹中。