Fix asset resolution at build time
This commit is contained in:
parent
dbbe4da401
commit
96238ceb2e
1 changed files with 5 additions and 5 deletions
|
@ -4,23 +4,23 @@ body{
|
||||||
|
|
||||||
@keyframes backgroundTransition {
|
@keyframes backgroundTransition {
|
||||||
0% {
|
0% {
|
||||||
background-image: url('src/assets/1.jpg');
|
background-image: url('../assets/1.jpg');
|
||||||
animation-timing-function: ease-out;
|
animation-timing-function: ease-out;
|
||||||
}
|
}
|
||||||
25% {
|
25% {
|
||||||
background-image: url('src/assets/2.jpg');
|
background-image: url('../assets/2.jpg');
|
||||||
animation-timing-function: ease-in;
|
animation-timing-function: ease-in;
|
||||||
}
|
}
|
||||||
50% {
|
50% {
|
||||||
background-image: url('src/assets/3.jpg');
|
background-image: url('../assets/3.jpg');
|
||||||
animation-timing-function: ease-out;
|
animation-timing-function: ease-out;
|
||||||
}
|
}
|
||||||
75% {
|
75% {
|
||||||
background-image: url('src/assets/4.jpg');
|
background-image: url('../assets/4.jpg');
|
||||||
animation-timing-function: ease-in;
|
animation-timing-function: ease-in;
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
background-image: url('src/assets/1.jpg');
|
background-image: url('../assets/1.jpg');
|
||||||
animation-timing-function: ease-out;
|
animation-timing-function: ease-out;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue