Skip to content

Commit

Permalink
Fixed electron packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
dmatora committed Oct 11, 2023
1 parent a7807b7 commit b70da7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/desktop-react/index.html
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<title>DesktopReact</title>
<base href="/" />
<base href="./" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
Expand Down
6 changes: 4 additions & 2 deletions apps/desktop-react/project.json
Expand Up @@ -13,10 +13,12 @@
},
"configurations": {
"development": {
"mode": "development"
"mode": "development",
"baseHref": "/"
},
"production": {
"mode": "production"
"mode": "production",
"baseHref": "./"
}
}
},
Expand Down

0 comments on commit b70da7a

Please sign in to comment.