home ~ projects ~ socials

Spotify API - Setup IPC Access For Tauri App

Had to set this up in the tauri.conf.json. (Will probably need api.spotify.com too)

"security": {
      "csp": null,
      "dangerousRemoteDomainIpcAccess": [
        {
          "domain": "accounts.spotify.com",
          "windows": ["main"],
          "enableTauriAPI": true
        }
      ]
    },
-- end of line --