Skip to content

Commit 374c8eb

Browse files
committed
Fix search engines not indexing the site
Problem: Lighthouse reports search engines can't index the site because noindex, nofollow are in the meta robots tag. Solution: Set the hugo environment to production. Result: Lighthouse score improves.
1 parent de70f75 commit 374c8eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile.nginx

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ RUN apk add git && \
55

66
COPY . /src/
77

8-
RUN hugo
8+
ENV HUGO_ENV="production"
9+
10+
RUN hugo --gc
911

1012
FROM nginx:stable
1113

0 commit comments

Comments
 (0)