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(
132132// isomorphic rendering
133133app . use ( '/' , serverRoutes ) ;
134134
135- if ( process . env . MOBILE_ENABLED ) {
136- app . use ( '/mobile' , serverRoutes ) ;
137- }
138-
139135app . use ( assetRoutes ) ;
140136
141137app . use ( '/' , embedRoutes ) ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export function renderIndex() {
3333 window.process.env.UI_COLLECTIONS_ENABLED = ${ process . env . UI_COLLECTIONS_ENABLED === 'false' ? false : true } ;
3434 window.process.env.UPLOAD_LIMIT = ${ process . env . UPLOAD_LIMIT ? `${ process . env . UPLOAD_LIMIT } ` : undefined } ;
3535 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 } ;
3737
3838 </script>
3939 </head>
You can’t perform that action at this time.
0 commit comments