AMP
示例
使用 Next.js,您可以使用最少的配置,将任何 React 页面转换为 AMP 页面,而无需离开 React。
您可以在官方 amp.dev 站点阅读更多关于 AMP 的信息。
启用 AMP
要为页面启用 AMP 支持,并了解有关不同 AMP 配置的更多信息,请阅读 next/amp
的 API 文档。
注意事项
- 仅支持 CSS-in-JS。目前 AMP 页面不支持 CSS Modules。您可以为 Next.js 贡献 CSS Modules 支持。
添加 AMP 组件
AMP 社区提供了许多组件,使 AMP 页面更具互动性。Next.js 将自动导入页面上使用的所有组件,无需手动导入 AMP 组件脚本
export const config = { amp: true }
function MyAmpPage() {
const date = new Date()
return (
<div>
<p>Some time: {date.toJSON()}</p>
<amp-timeago
width="0"
height="15"
datetime={date.toJSON()}
layout="responsive"
>
.
</amp-timeago>
</div>
)
}
export default MyAmpPage
默认情况下,始终导入最新版本的组件。如果您想自定义版本,可以使用 next/head
,如下例所示
import Head from 'next/head'
export const config = { amp: true }
function MyAmpPage() {
const date = new Date()
return (
<div>
<Head>
<script
async
key="amp-timeago"
custom-element="amp-timeago"
src="https://cdn.ampproject.org/v0/amp-timeago-0.1.js"
/>
</Head>
<p>Some time: {date.toJSON()}</p>
<amp-timeago
width="0"
height="15"
datetime={date.toJSON()}
layout="responsive"
>
.
</amp-timeago>
</div>
)
}
export default MyAmpPage
AMP 验证
AMP 页面在开发期间使用 amphtml-validator 自动验证。错误和警告将出现在您启动 Next.js 的终端中。
页面也会在静态 HTML 导出期间进行验证,任何警告/错误都将打印到终端。任何 AMP 错误都将导致导出以状态代码 1
退出,因为导出不是有效的 AMP。
自定义验证器
您可以在 next.config.js
中设置自定义 AMP 验证器,如下所示
module.exports = {
amp: {
validator: './custom_validator.js',
},
}
跳过 AMP 验证
要关闭 AMP 验证,请将以下代码添加到 next.config.js
experimental: {
amp: {
skipValidation: true
}
}
静态 HTML 导出中的 AMP
当使用 静态 HTML 导出 静态预渲染页面时,Next.js 将检测页面是否支持 AMP,并根据该情况更改导出行为。
例如,混合 AMP 页面 pages/about.js
将输出
out/about.html
- 带有客户端 React 运行时的 HTML 页面out/about.amp.html
- AMP 页面
如果 pages/about.js
是一个仅 AMP 页面,那么它将输出
out/about.html
- 优化的 AMP 页面
Next.js 将自动在 HTML 版本的页面中插入 AMP 版本的链接,因此您无需这样做,如下所示
<link rel="amphtml" href="/about.amp.html" />
您的页面的 AMP 版本将包含指向 HTML 页面的链接
<link rel="canonical" href="/about" />
当 trailingSlash
启用时,pages/about.js
的导出页面将是
out/about/index.html
- HTML 页面out/about.amp/index.html
- AMP 页面
TypeScript
AMP 目前没有 TypeScript 的内置类型,但这已在他们的路线图中 (#13791)。
作为一种解决方法,您可以手动在项目中创建一个名为 amp.d.ts
的文件,并添加这些自定义类型。
这有帮助吗?