Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(config): add redirection to index.html by default #520

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/cli/templates.hh
Original file line number Diff line number Diff line change
Expand Up @@ -1402,6 +1402,12 @@ output = "build"
; The build script
; script = "npm run build"


[webview]
; Make root open index.html
index = "/"


[debug]
; Advanced Compiler Settings for debug purposes (ie C++ compiler -g, etc).
flags = "-g"
Expand Down Expand Up @@ -1457,6 +1463,7 @@ native_sources = ""
native_makefile = ""
sources = ""


[ios]

; signing guide: https://sockets.sh/guides/#ios-1
Expand Down Expand Up @@ -1531,6 +1538,7 @@ pfx = "certs/cert.pfx"
; The signing information needed by the appx api.
publisher = "CN=Beep Boop Corp., O=Beep Boop Corp., L=San Francisco, S=California, C=US"


[window]

; The initial height of the first window.
Expand Down
Loading