1 Star 0 Fork 0

george123456/KaTeX

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 489 Bytes
一键复制 编辑 原始数据 按行查看 历史
import babel from 'rollup-plugin-babel';
import alias from 'rollup-plugin-alias';
const {targets} = require('./webpack.common');
process.env.NODE_ENV = 'esm';
export default targets.map(({name, entry}) => ({
input: entry.replace('.webpack', ''),
output: {
file: `dist/${name}.mjs`,
format: 'es',
},
plugins: [
babel({runtimeHelpers: true}),
alias({
katex: '../katex.mjs',
}),
],
external: '../katex.mjs',
}));
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/george22222/KaTeX.git
git@gitee.com:george22222/KaTeX.git
george22222
KaTeX
KaTeX
master

搜索帮助