mirror of
https://github.com/khairul169/code-share.git
synced 2025-06-18 01:29:35 +07:00
16 lines
300 B
TypeScript
16 lines
300 B
TypeScript
|
import type { Config } from "vike/types";
|
||
|
|
||
|
export default {
|
||
|
clientRouting: true,
|
||
|
passToClient: ["routeParams"],
|
||
|
meta: {
|
||
|
title: {
|
||
|
env: { server: true, client: true },
|
||
|
},
|
||
|
description: {
|
||
|
env: { server: true },
|
||
|
},
|
||
|
},
|
||
|
hydrationCanBeAborted: true,
|
||
|
} satisfies Config;
|