diff --git a/nuxt.config.js b/nuxt.config.js
index c19f7b07aa6b67d1727be2c423dd6c5a52768f69..752b31ccf9b8f01102633e06af44eb088e4357d1 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -1,5 +1,8 @@
 import pkg from './package'
 
+const { CI_PAGES_URL } = process.env
+const base = CI_PAGES_URL && new URL(CI_PAGES_URL).pathname
+
 export default {
   mode: 'universal',
 
@@ -34,7 +37,7 @@ export default {
   ** Customize the base url
   */
   router: {
-    base: '/nuxt/'
+    base
   },
 
   /*