1 Star 0 Fork 0

落叶/LottiePlayer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
落叶 提交于 2023-04-17 11:38 . 更新
import path from 'path'
import { defineConfig } from 'vite'
import { getBuild, getPlugins } from './build/config'
import { globalVar } from './build/env/globalVar'
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
const env = globalVar(command, mode)
return {
resolve: {
alias: {
'~/': `${path.resolve(__dirname, 'src')}/`
}
},
plugins: getPlugins(env),
server: {
host: '0.0.0.0',
port: 9800,
open: false,
https: false
},
build: getBuild(env)
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/veigarchen/lottie-player.git
git@gitee.com:veigarchen/lottie-player.git
veigarchen
lottie-player
LottiePlayer
master

搜索帮助