Skip to content
Discussion options

You must be logged in to vote

In the Dockerfile it says:

# You only need to copy next.config.js if you are NOT using the default configuration
# COPY --from=builder /app/next.config.js ./

So you need to uncomment that line, and let it copy the next.config.js file.

# You only need to copy next.config.js if you are NOT using the default configuration
COPY --from=builder /app/next.config.js ./

Edit - Solution

import GithubSvg from "components/blog/svg/github.svg";

Is incorrect because the file system has:

components
├── Test.tsx
├── blog
│   ├── Keyword.tsx
│   └── svg
│       └── Github.svg
└── layouts
    └── BaseLayout.tsx

The right import ought to be:

import GithubSvg from "components/blog/svg/Github.svg";

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@Debonex
Comment options

@icyJoseph
Comment options

@icyJoseph
Comment options

@Debonex
Comment options

@fbartho
Comment options

Answer selected by Debonex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
3 participants