feat: initialize Tauri 2.x project structure

This commit is contained in:
2026-05-18 00:03:09 +05:30
parent 64df0660c8
commit 8e6ff466e1
14 changed files with 543 additions and 1 deletions
+56
View File
@@ -0,0 +1,56 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "MarkdownConverter",
"version": "4.3.0",
"identifier": "com.concreteinfo.markdownconverter",
"build": {
"devUrl": "http://localhost:1420",
"frontendDist": "../dist",
"devtools": true
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "MarkdownConverter",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"center": true,
"fileDropEnabled": true
}
],
"security": {
"csp": "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self' https://kroki.io https://plantuml.com"
}
},
"bundle": {
"active": true,
"targets": ["nsis", "msi"],
"icon": [
"../assets/icons/32x32.png",
"../assets/icons/128x128.png",
"../assets/icons/128x128@2x.png",
"../assets/icons/icon.icns",
"../assets/icons/icon.ico"
],
"resources": {},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"plugins": {
"shell": {
"open": true,
"scope": [
{ "name": "pandoc", "cmd": "pandoc", "args": true },
{ "name": "ffmpeg", "cmd": "ffmpeg", "args": true }
]
}
}
}