// css파일에서~예시코드~
.title {
background-image : url('./img/title.png');
}
import titleImg from './img/title.png';
function Test(){
return(
< div style = {backgroundImage :url(${titleImg})
} />
// template literal
< img src = {titleImg} />
)
}
< img src = '/title.png' />
// create-react-app 공식문서 내용
< img src = {process.env.PUBLIC_URL + '/title.png'} />
// 현재 사이트 경로 의미
// 오류문
Module not found: Error: You attempted to import ../public/img/title.png which falls outside of the project src/ directory.
Relative imports outside of src/ are not supported.
You can either move it inside src/, or add a symlink to it from project's node_modules/.
🌟 잘못된 부분에 대한 말씀은 언제나 저에게 큰 도움이 됩니다. 🌟
👍 감사합니다!! 👍