62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "yurou",
|
|
"version": "0.1.0",
|
|
"identifier": "com.cirry.yurou",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "yurou",
|
|
"width": 900,
|
|
"height": 600,
|
|
"minWidth": 900,
|
|
"minHeight": 600,
|
|
"decorations": false,
|
|
"backgroundColor": "#faf9f6"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null,
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": []
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["nsis"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/64x64.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": {
|
|
"icons/file-icon.ico": "file-icon.ico"
|
|
},
|
|
"fileAssociations": [
|
|
{
|
|
"ext": ["md", "markdown", "mdown", "mkdn", "mkd", "mdwn"],
|
|
"name": "Markdown",
|
|
"description": "Markdown Document",
|
|
"role": "Editor",
|
|
"mimeType": "text/markdown"
|
|
}
|
|
],
|
|
"windows": {
|
|
"nsis": {
|
|
"installerHooks": "nsis-hooks.nsh"
|
|
}
|
|
}
|
|
}
|
|
}
|