1 Star 2 Fork 0

handlessUI/uniQuery

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 774 Bytes
一键复制 编辑 原始数据 按行查看 历史
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
const INVALID_CHAR_REGEX = /[\u0000-\u001F"#$&*+,:;<=>?[\]^`{|}\u007F]/g
const DRIVE_LETTER_REGEX = /^[a-z]:/i
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
uni(),
],
build: {
rollupOptions: {
output: {
// https://github.com/rollup/rollup/blob/master/src/utils/sanitizeFileName.ts
sanitizeFileName(name) {
const match = DRIVE_LETTER_REGEX.exec(name)
const driveLetter = match ? match[0] : ""
return (
driveLetter +
name.slice(driveLetter.length).replace(INVALID_CHAR_REGEX, "")
)
},
},
},
},
server: {
host: "0.0.0.0",
port: 8080
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/handless-ui/uniQuery.git
[email protected]:handless-ui/uniQuery.git
handless-ui
uniQuery
uniQuery
master

搜索帮助