1 Star 0 Fork 0

G2S/Clipboard

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
G2S 提交于 2024-06-29 15:46 . 优化目录
// Vite 的配置函数,便于提供类型提示
import { defineConfig } from "vite";
// Vite 的 Vue 插件,支持 Vue 3。
import vue from "@vitejs/plugin-vue";
// Node.js 的路径模块,用于处理文件路径
import path from "path";
// 自动导入插件,减少手动导入代码的工作量
import AutoImport from "unplugin-auto-import/vite";
import Components from "unplugin-vue-components/vite";
// Element Plus UI 库的解析器,自动导入 Element Plus 组件和 API。
import { ElementPlusResolver } from "unplugin-vue-components/resolvers";
// 获取本机 IP
import { internalIpV4 } from "internal-ip";
// @ts-expect-error process is a nodejs global
const mobile = !!/android|ios/.exec(process.env.TAURI_ENV_PLATFORM);
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [
vue(),
AutoImport({
// 生成类型声明文件
dts: "src/types/auto-imports.d.ts",
// 导入vue3的API
imports: ["vue", "vue-router"],
// 导入 Element Plus 组件和 API
resolvers: [ElementPlusResolver()],
}),
Components({
dts: "src/types/components.d.ts",
resolvers: [ElementPlusResolver()],
}),
],
// 配置 Vite 以支持路径别名
resolve: {
alias: {
"@": path.resolve("src"),
},
},
// 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: 1420,
strictPort: true,
host: mobile ? "0.0.0.0" : false,
hmr: mobile
? {
protocol: "ws",
host: await internalIpV4(),
port: 1421,
}
: undefined,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
},
}));
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/G2S/clipboard.git
git@gitee.com:G2S/clipboard.git
G2S
clipboard
Clipboard
master

搜索帮助