我想在我的文档中使用静态资产,但我得到 404
我的资产文件夹位于项目的根目录下 src/ 并称为静态
我在我的 styleguide.config.js 中的 assetsDir 中添加了这条路径
const path = require('path')
module.exports = {
assetsDir: 'src/static',
require: [
'babel-polyfill',
path.join(__dirname, 'src/styles/style.scss')
],
};
这就是我试图在 _icon.scss 中引用它的方式
.ic_file{
background: url("/static/img/svg/ic_file.svg") no-repeat center / auto;
width: 20px;
height: 20px;
display: inline-block;
}
我被困在里面,看不到我做错了什么。谢谢帮忙!!