borodean / postcss-assets

An asset manager for PostCSS
MIT License
537 stars 32 forks source link

about the baseUrl #64

Open jpuncle opened 7 years ago

jpuncle commented 7 years ago

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');
}
hendiko commented 7 years ago

I come across this issue too.