help wantedneed repro
倉庫指標
- 星標
- (9,721 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
Just opening a new issue confirming that bug #208 still exists and @githoniel's solution is still necessary today.
This has all to do with using relative paths in CSS files.
<style>
.element {
background-image: url('~./assets/img/bg.png');
// works in dev
// in production, browser will try to retrieve /static/css/assets/img/bg.png
}
</style>