-
Notifications
You must be signed in to change notification settings - Fork 2
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
Introduce lucid-evolution and wasm compatibility to the frontend #64
Merged
+9,462
−3,083
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b406cb2
fix cors and requestData errors
KJES4 9214041
redeem mint wallet
KJES4 5224214
add dynamic user info
KJES4 72e279c
add FE loading state
KJES4 87fd69c
add lucid-evolution and wasm compatibility
colll78 bad1cdf
submit endpoint
colll78 91ace43
update ui to support lucid wallet loading
KJES4 8b7b955
update lucid
KJES4 867b2b8
recent changes
KJES4 dc48555
handle changes to profile switcher
KJES4 0986ed5
add get wallet balance func
KJES4 2dcc6c3
Merge branch 'main' into frontend-lucid
KJES4 539bd73
Fix hash
j-mueller 13260ae
comment out output export
KJES4 9b7cff4
Merge branch 'frontend-lucid' of https://github.com/input-output-hk/w…
KJES4 26dd0b7
Disable container build
j-mueller File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need a line
output = "export"
for the docker image (to generate a single static page). This line won't work with theheaders
bit, so maybe we need two different configs, or look at debug vs production flags?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can do that but then it will most likely create conflicts with the rewrites. This is what I get from NextJS when I try to use both the rewrites and the output="export" at the same time. https://nextjs.org/docs/messages/export-no-custom-routes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the production build we don't need the rewrites anyway, so we can just switch between two different configs based on the flag
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I comment out the rewrites in the commit so that the Nix build works?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be ok now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the tests still failed. Should I merge it or wait for that to pass?