UNPKG

create-vanjs

Version:

🍦 Quick tool for scaffolding your first VanJS project

45 lines (44 loc) 1.36 kB
// https://vike.dev/config export const config = { // prerender: true, passToClient: ["someAsyncProps", "title", "description"], clientRouting: true, hydrationCanBeAborted: true, // https://vike.dev/meta meta: { // Define new setting 'title' title: { env: { server: true, client: true }, }, description: { env: { server: true, client: true }, }, // define more meta tags here as the above // Define new setting 'dataIsomorph' dataIsomorph: { env: { config: true }, effect({ configDefinedAt, configValue }) { if (typeof configValue !== "boolean") { throw new Error(`${configDefinedAt} should be a boolean`); } if (configValue) { return { meta: { data: { // We override Vike's default behavior of always loading/executing data() on the server-side. // If we set dataIsomorph to true, then data() is loaded/executed in the browser as well, allowing us to fetch data directly from the browser upon client-side navigation (without involving our Node.js/Edge server at all). env: { server: true, client: true }, }, }, }; } }, }, }, hooksTimeout: { data: { error: 30 * 1000, warning: 10 * 1000, }, }, };