29 lines
484 B
TypeScript
29 lines
484 B
TypeScript
import type { Config } from 'vike/types'
|
|
|
|
// https://vike.dev/config
|
|
export default {
|
|
// https://vike.dev/clientRouting
|
|
clientRouting: true,
|
|
// https://vike.dev/meta
|
|
meta: {
|
|
// Define new setting 'title'
|
|
title: {
|
|
env: {
|
|
server: true,
|
|
client: true,
|
|
},
|
|
},
|
|
// Define new setting 'description'
|
|
description: {
|
|
env: { server: true }
|
|
},
|
|
Layout: {
|
|
env: {
|
|
server: true,
|
|
client: true,
|
|
},
|
|
},
|
|
},
|
|
hydrationCanBeAborted: true
|
|
} satisfies Config
|