admin管理员组文章数量:1352041
I am using npx create-next-app
to create my NextJs project and now I want to add global style for it by bootstrap
After downloading bootstrap
, it suggested me adding global style in pages/_app.js
but I found no file like it. Thanks for helping me
I am using npx create-next-app
to create my NextJs project and now I want to add global style for it by bootstrap
After downloading bootstrap
, it suggested me adding global style in pages/_app.js
but I found no file like it. Thanks for helping me
- is your project working without _app.js ? – Bilal Mohammad Commented Sep 6, 2021 at 6:05
- @BilalMohammad yeah, it worked perfectly but I still need add global style =( – Tâm Đỗ Commented Sep 6, 2021 at 6:19
-
You should have _app.js in the pages folder. Try running
npx create-next-app
again? – Surjeet Bhadauriya Commented Sep 6, 2021 at 6:27 - @SurjeetBhadauriya I did but It is not there – Tâm Đỗ Commented Sep 6, 2021 at 6:34
- @TâmĐỗ What's inside of your pages/index.js? Can you show that please? – Surjeet Bhadauriya Commented Sep 6, 2021 at 6:38
3 Answers
Reset to default 2You create your pages/_app.js
, you place code below
import React from 'react';
export default function App({ Component, pageProps }) {
return (
<Component {...pageProps} />
);
}
To add bootstrap, you create styles folder in /public
, you add your .css file of bootstrap (imagine it's bootstrap.css
). After, you add import to your app.js
file, and the example below:
import React from 'react';
import "../styles/bootstrap.css";
export default function App({ Component, pageProps }) {
return (
<Component {...pageProps} />
);
}
The possible reason you don't have app.js
is because you didn't build your project yet
when you make a new Nextjs project you don't have this file
you should create this file in root pages
_app.js or _app.tsx (if you use typescript)
const MyApp=()=>{
return(
enter code here
)
}
export default MyApp
Add _document.js file in pages/_document.js, you can add your global style in this file index.jsx see documentation: Custom Document Next.js
本文标签: javascriptCan not find appjs in nextJsStack Overflow
版权声明:本文标题:javascript - Can not find _app.js in nextJs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743907040a2559712.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论