next.js/test/integration/css-fixtures/unresolved-css-url/global.css
global.css32 lines511 B
p {
  background-image: url('/vercel.svg');
}

p:nth-child(1) {
  background-image: url(/vercel.svg);
}

/* p:nth-child(2) {
  background-image: url('./vercel.svg');
}

p:nth-child(3) {
  background-image: url(./vercel.svg);
} */

p:nth-child(4) {
  background-image: url('./public/vercel.svg');
}

p:nth-child(5) {
  background-image: url(./public/vercel.svg);
}

div {
  background-image: url('https://vercel.com/vercel.svg');
}

div:nth-child(1) {
  background-image: url('https://vercel.com/vercel.svg');
}
Quest for Codev2.0.0
/
SIGN IN