what the cjs.js fiel use
/node_modules/css-loader/dist/cjs.js??ref--13-1!./node_modules/postcss-loader/src??embedded!./src/styles.css
Here is what the above code is Doing:
1. The first line is the path to the node_modules folder.
2. The second line is the path to the css-loader module.
3. The third line is the path to the postcss-loader module.
4. The fourth line is the path to the styles.css file.
The output of the above code is:
.text-success {
color: green;
}
.text-danger {
color: red;
}
.text-warning {
color: yellow;
}
.text-primary {
color: blue;
}
.text-secondary {
color: gray;
}
.text-info {
color: aqua;
}
.text-light {
color: white;
}
.text-dark {
color: black;
}
.text-muted {
color: gray;
}
.text-white {
color: white;
}
.bg-primary {
background-color: blue;
}
.bg-success {
background-color: green;
}
.bg-info {
background-color: aqua;
}
.bg-warning {
background-color: yellow;
}
.bg-danger {
background-color: red;
}
.bg-secondary {
background-color: gray;
}
.bg-light {
background-color: white;
}
.bg-dark {
background-color: black;
}
.bg-white {
background-color: white;
}
.bg-transparent {
background-color: transparent;
}
.border {
border: 1px solid black;
}
.border-top {
border-top: 1px solid black;
}
.border-right {
border-right: 1px solid black;
}
.border-bottom {
border-bottom: 1px solid black;
}
.border-left {
border-left: 1px solid black;
}
.border-0 {
border: 0;
}
.border-top-0 {
border-top: 0;
}
.border-right-0 {
border-right: 0;
}
.border-bottom-0 {
border-bottom: 0;
}
.border-left-0 {
border-left: 0;
}
.border-primary {
border-color: blue;
}
.border-secondary {
border-color: gray;
}
.border-success {
border-color: green;
}
.border-info {
border-color: aqua;
}
.border-warning {
border-color: yellow;
}
.border-danger {
border-color: red;
}
.border-light {
border-color: white;
}
.border-dark {
border-color: black;
}
.border-white {
border-color: white;
}
.rounded {
border-radius: 0.25rem;
}
.rounded-top {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.rounded