代码拉取完成,页面将自动刷新
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
]
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。