I'm attempting to use an image from public/assets/subtract.png, but I am encountering a resolution issue.
Here is the code snippet in question:
body {
background-image: url("./assets/subtract.png");
}
The specific problem I am facing is detailed below:
./src/styles/index.css (./node_modules/css-loader/dist/cjs.js??ref--5-oneOf-4-1!./node_modules/postcss-loader/src??postcss!./src/styles/index.css)
Error: Can't resolve './assets/subtract.png' in 'E:\xampp\htdocs\learning\my-app\src\styles'
Even when attempting to move the file to the public folder instead of inside assets, it still results in an error being thrown.