gulp-inline-source icon indicating copy to clipboard operation
gulp-inline-source copied to clipboard

Resources not loaded in mode inline

Open EdvaldoLima opened this issue 7 years ago • 0 comments

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 ../

EdvaldoLima avatar Feb 03 '18 18:02 EdvaldoLima