第一个版本!

This commit is contained in:
lkhsss
2025-06-14 17:28:34 +08:00
commit 9797530d68
38 changed files with 11117 additions and 0 deletions

143
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,143 @@
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
name: Publish to Github Releases
permissions:
contents: write
outputs:
rc: ${{ steps.check-tag.outputs.rc }}
strategy:
fail-fast: false
matrix:
include:
- target: aarch64-unknown-linux-musl
use-cross: true
os: ubuntu-latest
cargo-flags: ""
- target: aarch64-apple-darwin
os: macos-latest
use-cross: true
cargo-flags: ""
- target: aarch64-pc-windows-msvc
os: windows-latest
use-cross: true
cargo-flags: ""
- target: x86_64-apple-darwin
os: macos-latest
cargo-flags: ""
- target: x86_64-pc-windows-msvc
os: windows-latest
cargo-flags: ""
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
use-cross: true
cargo-flags: ""
- target: i686-unknown-linux-musl
os: ubuntu-latest
use-cross: true
cargo-flags: ""
- target: i686-pc-windows-msvc
os: windows-latest
use-cross: true
cargo-flags: ""
- target: armv7-unknown-linux-musleabihf
os: ubuntu-latest
use-cross: true
cargo-flags: ""
- target: arm-unknown-linux-musleabihf
os: ubuntu-latest
use-cross: true
cargo-flags: ""
runs-on: ${{matrix.os}}
env:
BUILD_CMD: cargo tauri
steps:
- uses: actions/checkout@v4
- name: Check Tag
id: check-tag
shell: bash
run: |
ver=${GITHUB_REF##*/}
echo "version=$ver" >> $GITHUB_OUTPUT
if [[ "$ver" =~ [0-9]+.[0-9]+.[0-9]+$ ]]; then
echo "rc=false" >> $GITHUB_OUTPUT
else
echo "rc=true" >> $GITHUB_OUTPUT
fi
- name: Install Rust Toolchain Components
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
run: |
cargo install tauri-cli --version "^2.0.0" --locked
- name: Install cross
if: matrix.use-cross
uses: taiki-e/install-action@v2
with:
tool: cross
- name: Overwrite build command env variable
if: matrix.use-cross
shell: bash
run: echo "BUILD_CMD=cross" >> $GITHUB_ENV
- name: Show Version Information (Rust, cargo, GCC)
shell: bash
run: |
gcc --version || true
rustup -V
rustup toolchain list
rustup default
cargo -V
rustc -V
- name: Build
shell: bash
run: $BUILD_CMD build --locked --release --target=${{ matrix.target }} ${{ matrix.cargo-flags }}
- name: Build Archive
shell: bash
id: package
env:
target: ${{ matrix.target }}
version: ${{ steps.check-tag.outputs.version }}
run: |
set -euxo pipefail
bin=${GITHUB_REPOSITORY##*/}
dist_dir=`pwd`/dist
name=$bin-$version-$target
executable=target/$target/release/$bin
if [[ "$RUNNER_OS" == "Windows" ]]; then
executable=$executable.exe
fi
mkdir $dist_dir
cp $executable $dist_dir
cd $dist_dir
if [[ "$RUNNER_OS" == "Windows" ]]; then
archive=$dist_dir/$name.zip
7z a $archive *
echo "archive=dist/$name.zip" >> $GITHUB_OUTPUT
else
archive=$dist_dir/$name.tar.gz
tar -czf $archive *
echo "archive=dist/$name.tar.gz" >> $GITHUB_OUTPUT
fi
- name: Publish Archive
uses: softprops/action-gh-release@v2
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
draft: false
files: ${{ steps.package.outputs.archive }}
prerelease: ${{ steps.check-tag.outputs.rc == 'true' }}

24
.gitignore vendored Normal file
View File

@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

7
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"recommendations": [
"Vue.volar",
"tauri-apps.tauri-vscode",
"rust-lang.rust-analyzer"
]
}

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# githubdownloader
一个github专用的Release下载器
## 原理
github网页域名被屏蔽但是api没有。所以可以用本工具获取下载直链然后使用加速站

3276
data.json Normal file

File diff suppressed because it is too large Load Diff

14
index.html Normal file
View File

@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri + Vue 3 App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

1710
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "githubdownloader",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"element-plus": "^2.9.7",
"vue": "^3.5.13"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^5.2.1",
"vite": "^6.0.3"
}
}

6
public/tauri.svg Normal file
View File

@ -0,0 +1,6 @@
<svg width="206" height="231" viewBox="0 0 206 231" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M143.143 84C143.143 96.1503 133.293 106 121.143 106C108.992 106 99.1426 96.1503 99.1426 84C99.1426 71.8497 108.992 62 121.143 62C133.293 62 143.143 71.8497 143.143 84Z" fill="#FFC131"/>
<ellipse cx="84.1426" cy="147" rx="22" ry="22" transform="rotate(180 84.1426 147)" fill="#24C8DB"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M166.738 154.548C157.86 160.286 148.023 164.269 137.757 166.341C139.858 160.282 141 153.774 141 147C141 144.543 140.85 142.121 140.558 139.743C144.975 138.204 149.215 136.139 153.183 133.575C162.73 127.404 170.292 118.608 174.961 108.244C179.63 97.8797 181.207 86.3876 179.502 75.1487C177.798 63.9098 172.884 53.4021 165.352 44.8883C157.82 36.3744 147.99 30.2165 137.042 27.1546C126.095 24.0926 114.496 24.2568 103.64 27.6274C92.7839 30.998 83.1319 37.4317 75.8437 46.1553C74.9102 47.2727 74.0206 48.4216 73.176 49.5993C61.9292 50.8488 51.0363 54.0318 40.9629 58.9556C44.2417 48.4586 49.5653 38.6591 56.679 30.1442C67.0505 17.7298 80.7861 8.57426 96.2354 3.77762C111.685 -1.01901 128.19 -1.25267 143.769 3.10474C159.348 7.46215 173.337 16.2252 184.056 28.3411C194.775 40.457 201.767 55.4101 204.193 71.404C206.619 87.3978 204.374 103.752 197.73 118.501C191.086 133.25 180.324 145.767 166.738 154.548ZM41.9631 74.275L62.5557 76.8042C63.0459 72.813 63.9401 68.9018 65.2138 65.1274C57.0465 67.0016 49.2088 70.087 41.9631 74.275Z" fill="#FFC131"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.4045 76.4519C47.3493 70.6709 57.2677 66.6712 67.6171 64.6132C65.2774 70.9669 64 77.8343 64 85.0001C64 87.1434 64.1143 89.26 64.3371 91.3442C60.0093 92.8732 55.8533 94.9092 51.9599 97.4256C42.4128 103.596 34.8505 112.392 30.1816 122.756C25.5126 133.12 23.9357 144.612 25.6403 155.851C27.3449 167.09 32.2584 177.598 39.7906 186.112C47.3227 194.626 57.153 200.784 68.1003 203.846C79.0476 206.907 90.6462 206.743 101.502 203.373C112.359 200.002 122.011 193.568 129.299 184.845C130.237 183.722 131.131 182.567 131.979 181.383C143.235 180.114 154.132 176.91 164.205 171.962C160.929 182.49 155.596 192.319 148.464 200.856C138.092 213.27 124.357 222.426 108.907 227.222C93.458 232.019 76.9524 232.253 61.3736 227.895C45.7948 223.538 31.8055 214.775 21.0867 202.659C10.3679 190.543 3.37557 175.59 0.949823 159.596C-1.47592 143.602 0.768139 127.248 7.41237 112.499C14.0566 97.7497 24.8183 85.2327 38.4045 76.4519ZM163.062 156.711L163.062 156.711C162.954 156.773 162.846 156.835 162.738 156.897C162.846 156.835 162.954 156.773 163.062 156.711Z" fill="#24C8DB"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

1
public/vite.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

7
src-tauri/.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# Generated by Cargo
# will have compiled files and executables
/target/
# Generated by Tauri
# will have schema files for capabilities auto-completion
/gen/schemas

5519
src-tauri/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

28
src-tauri/Cargo.toml Normal file
View File

@ -0,0 +1,28 @@
[package]
name = "githubdownloader"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "githubdownloader_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2.0.12"
url = "2.5.4"
reqwest = { version = "0.12.15", features = ["json"] }

3
src-tauri/build.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
tauri_build::build()
}

View File

@ -0,0 +1,10 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"permissions": [
"core:default",
"opener:default"
]
}

BIN
src-tauri/icons/128x128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

BIN
src-tauri/icons/32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 974 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 903 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src-tauri/icons/icon.icns Normal file

Binary file not shown.

BIN
src-tauri/icons/icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

BIN
src-tauri/icons/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

145
src-tauri/src/lib.rs Normal file
View File

@ -0,0 +1,145 @@
use reqwest::header;
use serde::{Deserialize, Serialize};
use thiserror::Error;
use url::{Host, Position, Url};
#[tauri::command]
async fn handle(url: String) -> GetResult {
let handled_url = match Url::parse(&url) {
Ok(o) => o,
Err(_) => return GetResult::fail("无法解析链接"),
};
if handled_url.host_str() != Some("github.com") {
return GetResult::fail("无法解析除了github之外的服务");
}
let url_data: Vec<_> = handled_url.path().split("/").collect();
let (author, repo) = (url_data[1], url_data[2]);
let data = match get_data(author.to_string(), repo.to_string()).await {
Ok(d) => d,
Err(_) => return GetResult::fail("获取失败"),
};
GetResult::new(data)
}
async fn get_data(author: String, repo: String) -> Result<Vec<Data>, Box<dyn std::error::Error>> {
let url = format!("https://api.github.com/repos/{}/{}/releases", author, repo);
let mut headers = header::HeaderMap::new();
headers.insert(
"Accept",
header::HeaderValue::from_static("application/vnd.github+json'"),
);
headers.insert(
"User-Agent",
header::HeaderValue::from_static("Chrome/122.0.6261.95 Safari/537.36"),
);
let body = reqwest::Client::builder()
.default_headers(headers)
.build()?
.get(url)
.send()
.await?
.json::<Vec<Data>>()
.await?;
// println!("body = {body:?}");
Ok(body)
}
#[derive(Debug, Deserialize, Serialize)]
struct Data {
url: String,
assets_url: String,
upload_url: String,
html_url: String,
id: usize,
author: Author,
assets: Vec<Asset>,
node_id: String,
tag_name: String,
target_commitish: String,
name: String,
draft: bool,
prerelease: bool,
created_at: String,
published_at: String,
tarball_url:String,
zipball_url:String
}
#[derive(Debug, Deserialize, Serialize)]
struct Author {
login: String,
id: usize,
node_id: String,
avatar_url: String,
gravatar_id: String,
url: String,
html_url: String,
followers_url: String,
following_url: String,
gists_url: String,
starred_url: String,
subscriptions_url: String,
organizations_url: String,
repos_url: String,
events_url: String,
received_events_url: String,
r#type: String,
user_view_type: String,
site_admin: bool,
}
#[derive(Debug, Deserialize, Serialize)]
struct Asset {
url: String,
id: usize,
node_id: String,
name: String,
label: String,
browser_download_url: String,
created_at:String,
updated_at:String,
size:usize
}
#[derive(Error, Debug)]
pub enum Error {
#[error("链接格式错误")]
ParseError(#[from] url::ParseError),
#[error("链接格式错误")]
NotTargetHost,
#[error("unknown data store error")]
Unknown,
}
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_opener::init())
.invoke_handler(tauri::generate_handler![handle])
.run(tauri::generate_context!())
.expect("error while running tauri application");
}
#[derive(Debug, Deserialize, Serialize)]
struct GetResult {
success: bool,
status: String,
data: Option<Vec<Data>>,
}
impl GetResult {
fn new(data: Vec<Data>) -> Self {
Self {
success: true,
status: "获取成功".into(),
data: Some(data),
}
}
fn fail<S: ToString>(s: S) -> Self {
Self {
success: false,
status: s.to_string(),
data: None,
}
}
}

6
src-tauri/src/main.rs Normal file
View File

@ -0,0 +1,6 @@
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
githubdownloader_lib::run()
}

35
src-tauri/tauri.conf.json Normal file
View File

@ -0,0 +1,35 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "githubdownloader",
"version": "0.1.0",
"identifier": "com.lkhsss.githubdownloader",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "githubdownloader",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}

117
src/App.vue Normal file
View File

@ -0,0 +1,117 @@
<script setup>
import { ref, watch } from "vue";
import { invoke } from "@tauri-apps/api/core";
import "element-plus/dist/index.css";
import { h } from 'vue'
import { ElNotification } from 'element-plus'
import { tr } from "element-plus/es/locales.mjs";
const origin_data = ref({});
const url = ref("");
const data = ref({});
const ifshow = ref(false);
const ifdata = ref(false);
watch(origin_data, async (newdata, olddata) => {
if (newdata["success"]) {
ifdata.value = true;
data.value = newdata["data"];
} else {
ifdata.value = false;
}
});
watch(url, async (newdata, olddata) => {
if (newdata.value == '') { ifshow.value = false; } else {
ifshow.value = true;
}
});
async function greet() {
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
ifdata.value = false;
ElNotification({
title: '查询数据中',
duration: 2000
})
origin_data.value = await invoke("handle", { url: url.value });
ifdata.value = true;
ElNotification({
title: '查询成功!',
duration: 2000
})
}
function copy(data) {
navigator.clipboard.writeText(data).then(() => {
ElNotification({
title: '已复制到剪贴板',
message: h('i', { style: 'color: teal' }, data),
duration: 2000
})
console.log('已复制到剪贴板!');
}).catch(err => {
ElNotification({
title: '复制失败',
message: h('i', { style: 'color: red' }, "原因:"+err),
duration: 1000
});
});
return false;
}
</script>
<template>
<el-input type="text" id="url" v-model="url" placeholder="Enter your url" @change="greet" />
<template v-if="ifshow">
<template v-if="ifdata">
<el-collapse expand-icon-position="left" accordion>
<template v-for="i in data">
<el-collapse-item :title="i.name" :name="i.tag_name">
<a :href="i.html_url"><el-tag type="primary" size="large" effect="dark" round>{{ i.tag_name }}</el-tag></a>
<el-tag type="primary" size="large" effect="light">{{ i.target_commitish }}</el-tag><br><br>
<el-button type="primary" size="large" effect="dark" @click="copy(i.tarball_url)"
title="点击复制">源码链接(tar)</el-button>
<el-button type="primary" size="large" effect="dark" @click="copy(i.zipball_url)"
title="点击复制">源码链接(zip)</el-button>
<el-descriptions title="Releases信息" column=2 border>
<el-descriptions-item label="Release id">{{ i.id }}</el-descriptions-item>
<el-descriptions-item label="Author">{{ i.author.login }}</el-descriptions-item>
<el-descriptions-item label="created time">{{ i.created_at }}</el-descriptions-item>
<el-descriptions-item label="published time">{{ i.published_at }}</el-descriptions-item>
</el-descriptions>
<el-collapse accordion>
<template v-for="x in i.assets">
<el-collapse-item :title="x.name">
<el-descriptions title="下载" column=1 border>
<el-descriptions-item label="Release 名称">{{ x.name }}</el-descriptions-item>
<el-descriptions-item label="Release 链接" truncated>
<!-- <a href="" @click="copy(x.browser_download_url)" title="点击复制"> {{ x.browser_download_url }}</a>
-->
<el-button type="primary" size="large" effect="dark" @click="copy(x.browser_download_url)"
title="点击复制">{{ x.browser_download_url }}</el-button>
</el-descriptions-item>
<el-descriptions-item label="创建时间">{{ x.created_at }}</el-descriptions-item>
<el-descriptions-item label="更新时间">{{ x.updated_at }}</el-descriptions-item>
</el-descriptions>
</el-collapse-item></template></el-collapse>
</el-collapse-item>
</template>
</el-collapse>
</template>
<el-skeleton :rows="10" animated v-else />
</template>
<template v-else><el-empty description="暂无数据"></el-empty></template>
</template>

1
src/assets/vue.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>

After

Width:  |  Height:  |  Size: 496 B

6
src/main.js Normal file
View File

@ -0,0 +1,6 @@
import { createApp } from "vue";
import App from "./App.vue";
import ElementPlus from 'element-plus'
createApp(App).use(ElementPlus).mount("#app");

31
vite.config.js Normal file
View File

@ -0,0 +1,31 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
const host = process.env.TAURI_DEV_HOST;
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [vue()],
// 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: host || false,
hmr: host
? {
protocol: "ws",
host,
port: 1421,
}
: undefined,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
},
}));