Fix components imports
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@@ -0,0 +1,3 @@
|
||||
.git
|
||||
*Dockerfile*
|
||||
.env
|
||||
@@ -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
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
} from '../store'
|
||||
|
||||
// Components
|
||||
import IconGlobe from '../atoms/iconGlobe'
|
||||
import IconGlobe from '../atoms/IconGlobe'
|
||||
|
||||
// Props
|
||||
export let type = ''
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user