gulp-inline-source
gulp-inline-source copied to clipboard
Resources not loaded in mode inline
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 ../