diff --git a/.gitignore b/.gitignore
index 45acc0715275e8f7cedab0ac80c4b3dc2564325e..445f17c0eca41f35d71611f5437d4bc24b2d6294 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 node_modules
 dist
 .nuxt
+_work
diff --git a/layouts/default.vue b/layouts/default.vue
index 5f821f769b20b9675cd6edfbd1ad7283e27f6dee..3f0084f432a58a5bc5f990b94082b65681f80398 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -91,7 +91,7 @@ export default {
             "https://iapi.pirati.cz/v1/groups",
             {
 //                headers: {
-//                    "X-Authorization": this.$cookie.get('auth._token.keycloak')
+//                    "Authorization": this.$cookie.get('auth._token.keycloak')
 //                }
             }
         ).then(res => res.json() )
diff --git a/nuxt.config.js b/nuxt.config.js
index ad88466f8805bf13b3c0c3f313b5ac0096450fd3..f710d9129b34a8e476b44158e2ed3ad63f419f86 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -1,5 +1,6 @@
 export default {
-  target: 'static',
+//  target: 'static',
+
   modules: [
     '@nuxtjs/dotenv',
     '@nuxtjs/axios',
@@ -7,37 +8,33 @@ export default {
     '@leandromatos/nuxt-cookie',
     '@nuxtjs/vuetify'
   ],
+
   auth: {
     strategies: {
-
-    keycloak: {
+      keycloak: {
         scheme: 'oauth2',
         endpoints: {
           authorization: `${process.env.KEYCLOAK_REMOTE_HOST}/auth/realms/${process.env.KEYCLOAK_REALM}/protocol/openid-connect/auth`,
-          token: undefined,
           userInfo: `${process.env.KEYCLOAK_REMOTE_HOST}/auth/realms/${process.env.KEYCLOAK_REALM}/protocol/openid-connect/userinfo`,
+          token: undefined,
           logout: `${process.env.KEYCLOAK_REMOTE_HOST}/auth/realms/${process.env.KEYCLOAK_REALM}/protocol/openid-connect/logout?redirect_uri=`
                     + encodeURIComponent(String(process.env.REMOTE_API))
         },
         token: {
           property: 'access_token',
           type: 'Bearer',
-          name: 'Authorization',
-          maxAge: 1800
+          maxAge: 1800,
         },
         refreshToken: {
           property: 'refresh_token',
           maxAge: 60 * 60 * 24 * 30
         },
-        responseType: 'token',
         grantType: 'authorization_code',
         clientId: process.env.KEYCLOAK_CLIENT_ID,
         scope: ['openid', 'profile'],
         codeChallengeMethod: 'S256',
       }
-    },
+    }
   }
-}
-
-
 
+}