export async function getServerSideProps() {
const response = await fetch("https://jsonplaceholder.typicode.com/users/1");
const user = await response.json();
console.log(response, "ответ с апи");
return {
user
}
}
&::after {
position: absolute;
content: "";
width: 35px;
height: 30px;
background: url("@/static/images/icons/search-icon_templates.svg") no-repeat 50% 50%;
right: 0;
top: 0;
}
Error: Can't resolve './@/static/images/icons/search-icon_templates.svg'
https://nextjs.org/docs/basic-features/data-fetchi...