mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
17 lines
472 B
TypeScript
17 lines
472 B
TypeScript
// See https://vike.dev/data-fetching
|
|
export default {
|
|
clientRouting: true,
|
|
prefetchStaticAssets: 'viewport',
|
|
passToClient: ['pageProps', /* 'urlPathname', */ 'routeParams'],
|
|
meta: {
|
|
title: {
|
|
// Make the value of `title` available on both the server- and client-side
|
|
env: { server: true, client: true },
|
|
},
|
|
description: {
|
|
// Make the value of `description` available only on the server-side
|
|
env: { server: true },
|
|
},
|
|
},
|
|
}
|