File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -132,10 +132,6 @@ app.get(
132
132
// isomorphic rendering
133
133
app . use ( '/' , serverRoutes ) ;
134
134
135
- if ( process . env . MOBILE_ENABLED ) {
136
- app . use ( '/mobile' , serverRoutes ) ;
137
- }
138
-
139
135
app . use ( assetRoutes ) ;
140
136
141
137
app . use ( '/' , embedRoutes ) ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export function renderIndex() {
33
33
window.process.env.UI_COLLECTIONS_ENABLED = ${ process . env . UI_COLLECTIONS_ENABLED === 'false' ? false : true } ;
34
34
window.process.env.UPLOAD_LIMIT = ${ process . env . UPLOAD_LIMIT ? `${ process . env . UPLOAD_LIMIT } ` : undefined } ;
35
35
window.process.env.MOBILE_ENABLED = ${ process . env . MOBILE_ENABLED ? `${ process . env . MOBILE_ENABLED } ` : undefined } ;
36
- window.process.env.TRANSLATIONS_ENABLED = ${ process . env . TRANSLATIONS_ENABLED === 'true' ? true :false } ;
36
+ window.process.env.TRANSLATIONS_ENABLED = ${ process . env . TRANSLATIONS_ENABLED === 'true' ? true : false } ;
37
37
38
38
</script>
39
39
</head>
You can’t perform that action at this time.
0 commit comments