next.js/test/integration/css-fixtures/unresolved-css-url/global.scss
global.scss32 lines529 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