0 Star 0 Fork 0

sylz/micro-frontends_tutorial

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rollup.config.js 869 Bytes
一键复制 编辑 原始数据 按行查看 历史
sylz 提交于 2020-04-29 18:56 . 注册app
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import babel from 'rollup-plugin-babel';
import serve from 'rollup-plugin-serve';
export default {
input: 'src/my-single-spa.js',
output: {
file: './lib/umd/my-single-spa.js',
format: 'umd', // umd commonjs esm AMD CMD systemjs
name: 'mySingleSpa', // 向外暴露出去的名字
sourcemap: true, //chrome提出的一个 为了方便 解析 你打完包以后 的东西(和源码进行映射)
},
plugins: [
resolve(),
commonjs(),
babel({exclude: 'node_modules/**'}),
process.env.SERVE ? serve({
open: true, // 是否自动打开浏览器
contentBase: '', // 默认的内容
openPage: '/tutorial/index.html', //打开浏览器的时候打开的页面
host: 'localhost',
port: 8080
}) : null
]
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Vennasia/micro-frontends_tutorial.git
[email protected]:Vennasia/micro-frontends_tutorial.git
Vennasia
micro-frontends_tutorial
micro-frontends_tutorial
master

搜索帮助