We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Tauri.toml
1 parent 0f48a7c commit 82046baCopy full SHA for 82046ba
2 files changed
CHANGELOG.md
@@ -10,6 +10,8 @@
10
import tauri from "vite-plugin-tauri"
11
```
12
13
+- Detect `Tauri.toml` file when detecting if there is a Tauri project is initialized or not.
14
+
15
# [3.0.1](https://github.com/amrbashir/vite-plugin-tauri/compare/v3.0.2...v3.0.1) (2022-10-1)
16
17
### What's Changed
src/utils.ts
@@ -6,7 +6,7 @@ export function getTauriConfPath(): string | null {
6
const tauriDepthEnv = process.env.TAURI_PATH_DEPTH;
7
const deep = tauriDepthEnv ? parseInt(tauriDepthEnv) : 3;
8
9
- return fg.sync("**/tauri.conf.(json|json5)", {
+ return fg.sync("**/(tauri.conf.(json|json5)|Tauri.toml)", {
absolute: true,
unique: true,
ignore: ["node_modules/**", "target/**"],
0 commit comments