Fix components imports
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-02-29 21:02:48 +01:00
parent faa16d1b16
commit 8a4faa616e
4 changed files with 9 additions and 4 deletions

3
.dockerignore Normal file
View File

@@ -0,0 +1,3 @@
.git
*Dockerfile*
.env

View File

@@ -2,8 +2,10 @@ FROM node:current-alpine
WORKDIR /var/www
CMD ls -la
# Copy all build and modules
COPY package.json dist .
COPY . .
# Open port
EXPOSE 3000

View File

@@ -4,7 +4,7 @@
} from '../store'
// Components
import IconGlobe from '../atoms/iconGlobe'
import IconGlobe from '../atoms/IconGlobe'
// Props
export let type = ''

View File

@@ -34,8 +34,8 @@
dayjs.extend(relativeTime)
// Components
import IconGlobe from '../../../atoms/iconGlobe'
import IconGlobeSmall from '../../../atoms/iconGlobeSmall'
import IconGlobe from '../../../atoms/IconGlobe'
import IconGlobeSmall from '../../../atoms/IconGlobeSmall'
import LinkChange from '../../../atoms/LinkChange'
import ToggleLayout from '../../../atoms/ToggleLayout'
import Photo from '../../../molecules/Photo'