2 Star 7 Fork 5

黑铁V/油猴脚本脚手架 By TS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 486 Bytes
一键复制 编辑 原始数据 按行查看 历史
黑铁V 提交于 2024-07-17 21:18 . changed to vite build
import { defineConfig } from 'vite'
import headerPlugin from "./plugins/header";
import syncPlugin from './plugins/sync'
export default defineConfig({
build: {
lib:{
entry: 'src/index.ts',
name: 'main',
fileName: 'main',
formats: ['es']
},
outDir: 'dist'
},
plugins: [
headerPlugin(),
{
...syncPlugin(),
apply: (_, {mode}) => mode === 'sync'
}
]
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ironV/tampermonkey-typescript.git
[email protected]:ironV/tampermonkey-typescript.git
ironV
tampermonkey-typescript
油猴脚本脚手架 By TS
vite

搜索帮助