1 Star 0 Fork 1

DevenL/AyaADB

forked from Gitee 极速下载/AyaADB 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 943 Bytes
一键复制 编辑 原始数据 按行查看 历史
redhoodsu 提交于 2024-10-18 17:21 . feat: toolbar
import { defineConfig, UserConfig } from 'vite'
import react from '@vitejs/plugin-react'
import fs from 'fs-extra'
import { fileURLToPath } from 'url'
import path from 'path'
export default defineConfig(async (): Promise<UserConfig> => {
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const pkg = await fs.readJSON(path.resolve(__dirname, 'package.json'))
return {
base: '',
plugins: [react()],
build: {
outDir: 'dist/renderer',
rollupOptions: {
input: {
app: './index.html',
},
},
},
css: {
modules: {
localsConvention: 'camelCaseOnly',
},
preprocessorOptions: {
scss: {
api: 'modern',
},
},
},
server: {
hmr: false,
port: 8080,
},
define: {
AYA_VERSION: JSON.stringify(pkg.version),
},
// @ts-ignore
test: {
environment: 'jsdom',
},
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/lywcn/AyaADB.git
[email protected]:lywcn/AyaADB.git
lywcn
AyaADB
AyaADB
master

搜索帮助