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
|
WORKDIR /var/www
|
||||||
|
|
||||||
|
CMD ls -la
|
||||||
|
|
||||||
# Copy all build and modules
|
# Copy all build and modules
|
||||||
COPY package.json dist .
|
COPY . .
|
||||||
|
|
||||||
# Open port
|
# Open port
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
} from '../store'
|
} from '../store'
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import IconGlobe from '../atoms/iconGlobe'
|
import IconGlobe from '../atoms/IconGlobe'
|
||||||
|
|
||||||
// Props
|
// Props
|
||||||
export let type = ''
|
export let type = ''
|
||||||
|
|||||||
@@ -34,8 +34,8 @@
|
|||||||
dayjs.extend(relativeTime)
|
dayjs.extend(relativeTime)
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import IconGlobe from '../../../atoms/iconGlobe'
|
import IconGlobe from '../../../atoms/IconGlobe'
|
||||||
import IconGlobeSmall from '../../../atoms/iconGlobeSmall'
|
import IconGlobeSmall from '../../../atoms/IconGlobeSmall'
|
||||||
import LinkChange from '../../../atoms/LinkChange'
|
import LinkChange from '../../../atoms/LinkChange'
|
||||||
import ToggleLayout from '../../../atoms/ToggleLayout'
|
import ToggleLayout from '../../../atoms/ToggleLayout'
|
||||||
import Photo from '../../../molecules/Photo'
|
import Photo from '../../../molecules/Photo'
|
||||||
|
|||||||
Reference in New Issue
Block a user