iframe content (youtube video) can't be loaded in release mode. #6276
-
|
My app has embedded youtube (an iframe). It can be loaded in the dev mode. But once I build the app bundle, the iframe can't be loaded by the release version. I suspect it's because of a security issue. But I can't access the debugger from the release mode. Is there a way to solve this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
add the |
Beta Was this translation helpful? Give feedback.
add the
"devtools"feature flag to the tauri dependency in Cargo.toml to enable them. Alternatively a debug build (tauri build --debug- output in target/debug/) should work too.