Skip to content

Commit

Permalink
chore: fix mobile gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Jul 6, 2022
1 parent 2b05f35 commit 2415088
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mobile/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ DerivedData
*.ipa
*.xcuserstate

html/Web.bundle/src/web-src

.env

# Android/IntelliJ
Expand Down Expand Up @@ -52,6 +50,8 @@ android-release.bundle.map
app-release.aab

*.bundle
!Web.bundle
html/Web.bundle/src/web-src
ios-release.bundle.map

# fastlane
Expand Down
1 change: 1 addition & 0 deletions packages/mobile/html/Web.bundle/loader.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a id="web-bundle-progress-bar" href="#"/></a>
25 changes: 25 additions & 0 deletions packages/mobile/html/Web.bundle/src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="stylesheet" href="web-src/app.css" />
</head>

<body>
<script>
window.defaultSyncServer = "https://api.standardnotes.com";
window.defaultFilesHost = "https://files.standardnotes.com";
window.enabledUnfinishedFeatures = "" === 'true';
window.websocketUrl = "";
window.purchaseUrl = "https://standardnotes.com/purchase";
window.plansUrl = "https://standardnotes.com/plans";
window.dashboardUrl = "https://standardnotes.com/dashboard";
</script>

<script src="web-src/app.js"></script>
</body>

</html>

0 comments on commit 2415088

Please sign in to comment.