通过 100+ 个技巧学习 Nuxt!

nupolyon

从 polyfill.io 向 nuxt 项目注入 polyfill,根据 browserslist 配置自动检测

Nupolyon

npm versionnpm downloadsLicense

自动从 https://cdnjs.cloudflare.com/polyfill/ 注入 polyfill

⚠️ 警告

不要使用此模块,据报告 POLYFILL.IO 注入了一些恶意代码。 我们暂时将 URL 移动到 Cloudflare 的镜像。

https://www.bleepingcomputer.com/news/security/polyfillio-javascript-supply-chain-attack-impacts-over-100k-sites/

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 (评论)

快速设置

  1. nupolyon 依赖项添加到您的项目中
npx nuxi@latest module add nupolyon
  1. nupolyon 添加到 nuxt.config.tsmodules 部分
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