File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,4 +9,6 @@ export const Route = createFileRoute('/studio/$')({
99 links : [ { rel : 'stylesheet' , href : cssLink } ] ,
1010 } ) ,
1111 component : ( ) => < Studio config = { sanityConfig } /> ,
12+ // Disable SSR for this route, as the studio is not meant to be rendered on the server
13+ ssr : false ,
1214} ) ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export function Footer() {
99 < footer className = "mt-8 border-t border-t-gray-light" >
1010 < div className = "grid grid-flow-col py-8" >
1111 < div className = "flex flex-col justify-between" >
12- < Link href = "/" aria-label = "Gå til forsiden" >
12+ < Link to = "/" aria-label = "Gå til forsiden" >
1313 < img src = { logoUrl } alt = "" className = "max-w-32" />
1414 </ Link >
1515 < p className = "flex" > © { currentYear } OBOS</ p >
You can’t perform that action at this time.
0 commit comments