1 Star 0 Fork 0

Luna/魔盒

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
Luna 提交于 2024-01-10 18:16 . init
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'node:path'
import AutoImport from 'unplugin-auto-import/vite'
import components from 'unplugin-vue-components/vite'
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [
vue(),
AutoImport({
imports: [
'vue',
{
'naive-ui': ['useDialog', 'useMessage', 'useNotification'],
},
],
}),
components({ resolvers: [NaiveUiResolver()] }),
],
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//
// 1. prevent vite from obscuring rust errors
clearScreen: false, // 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1520,
strictPort: true,
}, // 3. to make use of `TAURI_DEBUG` and other env variables
// https://tauri.studio/v1/api/config#buildconfig.beforedevcommand
envPrefix: ['VITE_', 'TAURI_'],
resolve: {
alias: {
'@': resolve('src'),
},
},
}))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/Luna-CY/magic-box.git
git@gitee.com:Luna-CY/magic-box.git
Luna-CY
magic-box
魔盒
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385