diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0e6e526fc15397cab7f14a9e8a81ca42d2a698dc..95de64a32530b65d6fb6f98f8505004c63785b85 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,17 +3,15 @@ image: node
 before_script:
   - npm install
 
-pages:
-  cache:
-    paths:
-      - node_modules/
+cache:
+  paths:
+    - node_modules/
 
+pages:
   script:
     - npm run generate
-
   artifacts:
     paths:
       - public
-
   only:
     - master
diff --git a/README.md b/README.md
index 8fa5c125e9b996e26061dfbc573089f22bb956b9..24830bbd95be098759ab7f0c525a8dc3255bcd7e 100644
--- a/README.md
+++ b/README.md
@@ -31,18 +31,16 @@ image: node
 before_script:
   - npm install
 
-pages:
-  cache:
-    paths:
-      - node_modules/
+cache:
+  paths:
+    - node_modules/
 
+pages:
   script:
     - npm run generate
-
   artifacts:
     paths:
       - public
-
   only:
     - master
 ```
@@ -65,6 +63,14 @@ step: just rename your project to `namespace.gitlab.io`, where `namespace` is
 your `username` or `groupname`. This can be done by navigating to your
 project's **Settings**.
 
+Also, please remove the entry containing the baseurl of your site on the file `nuxt.config.js`:
+
+```javascript
+router: {
+  base: '/nuxt/'
+},
+```
+
 Read more about [user/group Pages][userpages] and [project Pages][projpages].
 
 ## Did you fork this project?