Skip to content
Merged
Show file tree
Hide file tree
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
Binary file modified go/wallet/bundle.zip
Binary file not shown.
1 change: 1 addition & 0 deletions go/wallet/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ func NewHTTPServer(port uint, config *FlowConfig) (*Server, error) {

// API routes
apiRouter := r.PathPrefix("/api").Subrouter()
apiRouter.HandleFunc("", srv.configHandler).Methods("GET")
apiRouter.HandleFunc("/", srv.configHandler).Methods("GET")
apiRouter.HandleFunc("/polling-session", srv.getPollingSessionHandler).Methods("GET")
apiRouter.HandleFunc("/polling-session", srv.postPollingSessionHandler).Methods("POST")
Expand Down
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
output: "export",
productionBrowserSourceMaps: true,
async rewrites() {
return [
Expand Down
Loading