next.js/test/integration/css-fixtures/unresolved-css-url/pages/index.module.css
index.module.css32 lines553 B
.first {
  background-image: url('/vercel.svg');
}

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

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

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

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

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

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

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