1 Star 0 Fork 0

轻飘yyf/geo-three

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.dev.js 549 Bytes
一键复制 编辑 原始数据 按行查看 历史
tentone 提交于 2021-09-03 16:00 . Fix rollup hang on build
import serve from 'rollup-plugin-serve';
import typescript from '@rollup/plugin-typescript';
import livereload from 'rollup-plugin-livereload';
export default {
external: ['three'],
input: 'source/Main.ts',
plugins: [
typescript(),
serve({
open: true,
contentBase: '.',
verbose: true,
openPage: '/',
host: 'localhost',
port: 8080
}),
livereload({watch: '.'})
],
output: [
{
globals: {three: 'THREE'},
format: 'umd',
name: 'Geo',
file: 'build/geo-three.js',
indent: '\t',
sourcemap: true
}
]
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yyf994/geo-three.git
git@gitee.com:yyf994/geo-three.git
yyf994
geo-three
geo-three
master

搜索帮助