入门 - Rollup 入门配置文件 rollup -c 12345678// rollup.config.jsexport default { input: "src/main.js", output: { file: "bundle.js", format: "cjs", },}; (不相关的)批次构建123456789101112131415161718192021222324// rollup.config.js (building more than one bundle)export default [ { input: "main-a.js", output: { file: "dist/bundle-a.js", format: "cjs", }, }, { input: "main-b.js", output: [ { file: "dist/bundle-b1.js", format: "cjs", }, { file: "dist/bundle-b2.js", format: "es", }, ], },]; 配置智能提示1234// rollup.config.js/** * @type {import('rollup').RollupOptions} */ npm包加载123# 这将首先尝试加载包 "rollup-config-my-special-config"# 如果失败,则尝试加载 "my-special-config"rollup --config node:my-special-config 插件代码分割SystemJS Rollup #Rollup 入门 - Rollup https://wanmeishijie.xyz/notes/rollup/入门/ 作者 源 发布于 2024年3月2日 许可协议 常见问题 - Babel 上一篇 2024年03月02日11:44:47 - 周报 下一篇 Please enable JavaScript to view the comments