create-ekka-desktop-app 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ekka-desktop-app",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Create an EKKA desktop app with built-in demo backend. No setup required.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,7 +19,7 @@ pub struct WellKnownConfig {
19
19
  /// Returns the grant verification key (base64).
20
20
  pub async fn fetch_grant_verify_key() -> Result<String, String> {
21
21
  let engine_url = config::engine_url();
22
- let url = format!("{}/.well-known/ekka-configuration", engine_url.trim_end_matches('/'));
22
+ let url = format!("{}/engine/.well-known/ekka-configuration", engine_url.trim_end_matches('/'));
23
23
 
24
24
  tracing::info!(
25
25
  op = "well_known.fetch.start",