NextJS:如何通过 CDN 添加 bootstrap
NextJS: How to add bootstrap via CDN
我是 nextJS 的新手,我在通过 CDN 在应用程序中包含 bootstrap 时遇到了麻烦。在哪里添加链接是应用程序中的最佳做法?
要覆盖默认文档,请创建文件 ./pages/_document.js
并扩展文档 class,如下所示,并将 CDN 路径放在 HEAD
标记之间。
参考docs了解更多信息
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
static async getInitialProps(ctx) {
const initialProps = await Document.getInitialProps(ctx);
return { ...initialProps };
}
render() {
return (
<Html>
<Head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;
你只需要让它成为一个封闭的标签
包括来自 ./next
的 Head 并使用声明要包含在其中的任何链接。
<Head>
<script src="https://...."/>
</Head>
最好在Script tag for better performance, as mentioned in the docs中添加第三方脚本。
The Next.js Script component, next/script, is an extension of the HTML
element. It enables developers to set the loading priority of
third-party scripts anywhere in their application without needing to
append directly to next/head, saving developer time while improving
loading performance.
我是 nextJS 的新手,我在通过 CDN 在应用程序中包含 bootstrap 时遇到了麻烦。在哪里添加链接是应用程序中的最佳做法?
要覆盖默认文档,请创建文件 ./pages/_document.js
并扩展文档 class,如下所示,并将 CDN 路径放在 HEAD
标记之间。
参考docs了解更多信息
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
static async getInitialProps(ctx) {
const initialProps = await Document.getInitialProps(ctx);
return { ...initialProps };
}
render() {
return (
<Html>
<Head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;
你只需要让它成为一个封闭的标签
包括来自 ./next
的 Head 并使用声明要包含在其中的任何链接。
<Head>
<script src="https://...."/>
</Head>
最好在Script tag for better performance, as mentioned in the docs中添加第三方脚本。
The Next.js Script component, next/script, is an extension of the HTML
element. It enables developers to set the loading priority of third-party scripts anywhere in their application without needing to append directly to next/head, saving developer time while improving loading performance.