gpt4 book ai didi

sass - Vue Cli Webpack 后台 url 路径问题

转载 作者:搜寻专家 更新时间:2023-10-30 22:09:56 24 4
gpt4 key购买 nike

使用 vue 客户端。

出于某种原因,如果我直接在 scss 中引用它们并且不将它们动态绑定(bind)到我的 vue 对象,我的一些图像就会出现相对路径问题。

假设我有一个带有名为 box 的 div 的 vue 模板。Box 有这样的背景 url:

.box{背景:url('../img/box.jpg')

当我运行 npm run dev 时,它在本地工作得很好。但是当我运行构建时,它不起作用。 404 错误。我也试过这样做:

.box{
background: url('~../img/box.jpg')

那没有用。

所以有这个:

webpack css-loader not finding images within url() reference in an external stylesheet

当我在 webpack.config 中更改它时:

output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'build.js'
},

收件人:

output: {
path: path.resolve(__dirname, './dist'),
publicPath: './dist/',
filename: 'build.js'
},

它将在我的 webpack 构建中使用用于缓存的哈希创建 block 图像。并且只针对那些未绑定(bind)在 vue 对象中的特定图像。

然后我必须将这些图像拖到根 dist 文件夹中....而不是我想做的是将它们保存在相对于 html 文件的 img 文件夹中(html 文件很简单):

<html lang="en">
<head>

<meta charset="utf-8">
<title>vue</title>

</head>
<body>
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>


<app></app>
<script src="dist/build.js"></script>
</body>
</html>

问题是,我是否必须从数据中绑定(bind)每一个 vue img...或者如果我知道它不会被更改,我不能直接引用图像。

或者我的 sass loader/webpack 中是否缺少某些设置。

这是我的 webpack 配置:

var path = require('path')
var webpack = require('webpack')

module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: './dist/',
filename: 'build.js'
},
resolveLoader: {
root: path.join(__dirname, 'node_modules'),
},
vue: {
html: {
root: path.resolve(__dirname, './dist')
}
},
module: {
loaders: [
{
test: /\.vue$/,
loader: 'vue'
},
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
},
{
test: /\.json$/,
loader: 'json'
},
{
test: /\.html$/,
loader: 'vue-html'
},
{
test: /\.scss$/,
loaders: ["style", "css", "sass"]
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'url',
query: {
limit: 10000,
name: '[name].[ext]?[hash]'
}
}
]
},
devServer: {
historyApiFallback: true,
noInfo: true
},
devtool: '#eval-source-map'
}

if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.optimize.OccurenceOrderPlugin()
])
}

最佳答案

试试'~@/'的url前缀

background-image: url('~@/assets/box.jpg');

关于sass - Vue Cli Webpack 后台 url 路径问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39648785/

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