fmal / gulp-inline-source

Inline flagged js & css sources.
MIT License
212 stars 31 forks source link

Resources not loaded in mode inline #38

Open EdvaldoLima opened 6 years ago

EdvaldoLima commented 6 years ago

To the code:

#app{
    background-image: url('../img/background.jpg');
}

The image background is not found, to work:

#app{
    background-image: url('img/background.jpg');
}

To solved the problem remove ../