fix: move lamassu app to separate folder

This commit is contained in:
Sérgio Salgado 2021-03-17 19:06:49 +00:00 committed by Josh Harvey
parent ce3c4167a4
commit c3f8f98c26
2 changed files with 6 additions and 6 deletions

View file

@ -5,7 +5,7 @@ import * as serviceWorker from './serviceWorker'
function importBuildTarget() {
if (process.env.REACT_APP_BUILD_TARGET === 'LAMASSU') {
return import('./App')
return import('./lamassu/App')
} else if (process.env.REACT_APP_BUILD_TARGET === 'PAZUZ') {
return import('./pazuz/App')
} else {

View file

@ -21,11 +21,11 @@ import Sidebar from 'src/components/layout/Sidebar'
import TitleSection from 'src/components/layout/TitleSection'
import ApolloProvider from 'src/utils/apollo'
import Header from './components/layout/Header'
import { tree, hasSidebar, Routes, getParent } from './routing/routes'
import global from './styling/global'
import theme from './styling/theme'
import { backgroundColor, mainWidth } from './styling/variables'
import Header from '../components/layout/Header'
import { tree, hasSidebar, Routes, getParent } from '../routing/routes'
import global from '../styling/global'
import theme from '../styling/theme'
import { backgroundColor, mainWidth } from '../styling/variables'
if (process.env.NODE_ENV !== 'production') {
const whyDidYouRender = require('@welldone-software/why-did-you-render')