- Switch font deps from Sora/Manrope/IBM Plex Mono to Fraunces/Inter/Space Mono (Cold Open theme) - Add Tauri window permissions for custom titlebar controls - Disable native decorations and drag-drop in Tauri config - Add prefers-reduced-motion media query for WCAG compliance
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-utils/schema.json",
|
|
"productName": "TutorialVault",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tutorialvault.app",
|
|
"build": {
|
|
"devUrl": "http://localhost:1420",
|
|
"frontendDist": "../dist",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "TutorialVault",
|
|
"width": 1320,
|
|
"height": 860,
|
|
"minWidth": 640,
|
|
"minHeight": 480,
|
|
"decorations": false,
|
|
"dragDropEnabled": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; media-src 'self' http://tutdock.localhost; font-src 'self' data:; style-src 'self' 'unsafe-inline'; img-src 'self' data:; script-src 'self'"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": false,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"plugins": {}
|
|
}
|