mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-29 00:59:37 +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;
|