自动注入来自 https://cdnjs.cloudflare.com/polyfill/ 的 polyfill
请勿使用此模块,polyfill.io 已被报告注入恶意代码。我们暂时将 URL 更改为 Cloudflare 的镜像。
https://sansec.io/research/polyfill-supply-chain-attack
https://www.theregister.com/2024/06/25/polyfillio_china_crisis/
https://www.scmagazine.com/brief/over-100k-sites-hit-by-polyfill-io-supply-chain-attack
有关详细功能说明,请参见此处:#58 (评论)
nupolyon 依赖项添加到您的项目中npx nuxi@latest module add nupolyon
nupolyon 添加到 nuxt.config.ts 的 modules 部分export default defineNuxtConfig({
modules: [
'nupolyon'
]
})
就是这样!您现在可以在 Nuxt 应用程序中使用 Nupolyon 了 ✨
export default defineNuxtConfig({
modules: [
'nupolyon'
],
nupolyon: {
// change host
host: 'http://my-own-cdn.com/polyfill.min.js'
// or enable self-host mode
host: 'selfhost'
// customize browserslist's target
target: 'defaults'
},
})
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release
本项目在 MIT 许可证下发布,有关详细信息,请参阅 LICENSE。