feat: init commit.

This commit is contained in:
2023-03-18 13:46:46 +08:00
commit 3b52a796fc
39 changed files with 4928 additions and 0 deletions

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

@ -0,0 +1,49 @@
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "test-demo",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "cc.ivanli.take-screenshot-test-demo",
"targets": "all"
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "test-demo",
"width": 800,
"height": 600
}
]
}
}