企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
[TOC] # Rollup.js https://www.rollupjs.com/ [https://rollupjs.org/guide/zh/](https://rollupjs.org/guide/zh/) # 配置 ~~~ // rollup.config.js import json from 'rollup-plugin-json'; export default { input: 'src/main.js', output: { file: 'bundle.js', format: 'cjs' }, plugins: [ json() ] }; ~~~ [JavaScript 模块化](https://github.com/luoway/blog/issues/16)