diff --git a/components/content/pdockqMatrix.vue b/components/content/pdockqMatrix.vue
index 59db2e227217a880b5ffabbdb566c0d6948ad620..540fa6b37f81c7d283698af8a608f143e82e0e9a 100644
--- a/components/content/pdockqMatrix.vue
+++ b/components/content/pdockqMatrix.vue
@@ -128,12 +128,12 @@ const computedPDocksMatrixPlotOptions = computed(() => {
             marginBottom,
             grid: true,
 
-            x: { axis: "top", label: "Proteins", tickRotate: 45 },
-            y: { label: "Proteins" },
+            x: { axis: "top", label: "Protein on x", tickRotate: 45 },
+            y: { label: "Proteins on y" },
             legend: { label: matrix[0] },
             color: { scheme: "plasma", legend: true, reverse: true, domain: [0, 1] },
             marks: [
-                Plot.frame(),
+                // Plot.frame(),
                 Plot.cell(toValue(matrix[1]), {
                     x: (d) => d.protX,
                     y: (d) => d.protY,
diff --git a/nuxt.config.ts b/nuxt.config.ts
index a377488ef94878ed28c148cfa50198108715d037..7e0d8d3e8364702641fd3ca8dd94433daa0d3b79 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -1,7 +1,7 @@
 import { md3 } from 'vuetify/blueprints'
 // https://v3.nuxtjs.org/api/configuration/nuxt.config
 export default defineNuxtConfig({
-  ssr: false,
+  ssr: true,
   modules: [
     '@unocss/nuxt',
     '@nuxt/content',