postcss-assets
postcss-assets copied to clipboard
about the baseUrl
My config:
option: {
basePath: 'src/',
baseUrl: '//x.autoimg.cn/www/'
}
My style:
html {
background: resolve("../img/bg.png");
}
My output:
html {
background: url('/x.autoimg.cn/www/index/img/bg.png');
}
Expected:
html {
background: url('//x.autoimg.cn/www/index/img/bg.png');
}
I come across this issue too.