I'm currently building a project with React, and I'm using CSS modules for individual components.
In my public folder, I have /images/Background.png
.
In App.module.css, I have the following;
.Container {
background: url("./images/Background.png");
}
However, this throws the following error;
Can't resolve './images/Background.png' in 'C:\Users\Me\Documents\Projects\Test\app\src\components\styles'
How should I access the contents of the public folder with a CSS Module?