#Didn't work external link
4 messages · Page 1 of 1 (latest)
did you gave open permission in tauri config?
{
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "Tinkoff Desktop",
"version": "0.0.1"
},
"tauri": {
"allowlist": {
"all": true,
"shell": {
"all": true,
"open": true
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.leofaraf.dev",
"icon": [
"icons/icon.ico",
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns"
]
},
"security": {
"csp": null,
"dangerousUseHttpScheme": true,
"dangerousDisableAssetCspModification": true,
"dangerousRemoteDomainIpcAccess": [
{
"domain": "tinkoff.ru",
"windows": ["main", "root", "block", "global", "function"]
},
{
"domain": "www.tinkoff.ru",
"windows": ["main", "root", "block", "global", "function"]
},
{
"domain": "business.tinkoff.ru",
"windows": ["main", "root", "block", "global", "function" ]
}
]
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Tinkoff Desktop",
"width": 1200,
"height": 800
}
]
}
}
This is my config
are you trying to open the links inside the app or outside?