我是nextjs的新手,我不明白为什么未为此div设置背景图像。在根目录中,有一个名为public的文件夹,在其中有art-thing.jpg
文件。styles.css
在根目录中。 index.js
在根目录的页面目录中。我可以将背景设置为颜色,但是不能将其设置为图像。有一个类似问题的人的帖子,但我希望我的css不要内联。
styles.css
html {
scroll-behavior: smooth;
height: 100%;
}
body {
margin: 0px;
padding: 0px;
}
.page-container {
height: 100vh;
position: relative;
}
.page-container-welcome {
height: 100vh;
position: relative;
background-size: cover;
background-image: url("/public/img/Branding/art-thing.jpg");
}
.content-wrap{
padding-bottom: 2.5rem;
}
index.js
import 'bootstrap/dist/css/bootstrap.min.css';
import Head from 'next/head';
import HekateNav from "../client/components/nav";
import Footer from "../client/components/footer";
function Home() {
return (
<div>
<Head>
<title>Hekate</title>
</Head>
<div className="page-container-welcome">
<div className="content-wrap">
<HekateNav/>
</div>
</div>
<Footer/>
</div>
);
};
export default Home
我收到的控制台错误
DevTools failed to load SourceMap: Could not load content for http://localhost:3000/_next/static/css/bootstrap.min.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
答案 0 :(得分:3)
解决方案是通过删除公共路径来更改图像的路径。 here得到了答复。 将路径更改为/ img而不是/ public / image。 / public在这种情况下是网站的实际根目录。
.page-container-welcome {
height: 100vh;
position: relative;
background-size: cover;
background-image: url("/img/art-thing.jpg");
}
答案 1 :(得分:0)
尝试一下。
第一步。
点击此链接以安装“下一个图像” https://github.com/twopluszero/next-images
//next.config.js
const withImages = require("next-images");
module.exports = withImages();
第二步。
导入您的目标图像,并将其用于自定义样式,例如此代码。
//index.js
import artImage from '/image/Branding/art-thing.jpg'
//don't use public folder to use static image, make 'image' folder in root path
const useStyles = makeStyles(()=>{
pageContainerWelcome: {
height: '100vh',
background: 'url(' + artImage + ')',
...
...
},
}