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

feat: Allow account basename #319

Merged
merged 1 commit into from
Nov 20, 2023
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
1 change: 1 addition & 0 deletions src/config/env/dev.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"CHAIN_ID": "5",
"BASE_NAME": "/account",
"PEER_URL": "https://peer.decentraland.zone",
"BUILDER_URL": "https://builder.decentraland.zone",
"EXPLORER_URL": "https://play.decentraland.zone",
Expand Down
1 change: 1 addition & 0 deletions src/config/env/stg.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"CHAIN_ID": "1",
"BASE_NAME": "/account",
"PEER_URL": "https://peer.decentraland.org",
"BUILDER_URL": "https://builder.decentraland.today",
"EXPLORER_URL": "https://play.decentraland.org",
Expand Down
4 changes: 3 additions & 1 deletion src/modules/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ import { isTest } from '../lib/environment'
import { config } from '../config'
import migrations from './migrations'

export const history = require('history').createBrowserHistory()
export const history = require('history').createBrowserHistory({
basename: config.get('BASE_NAME'),
})
const rootReducer = storageReducerWrapper(createRootReducer(history))

const sagasMiddleware = createSagasMiddleware()
Expand Down
Loading