You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
432 B
TypeScript
19 lines
432 B
TypeScript
import vikeReact from "vike-react/config";
|
|
import type { Config } from "vike/types";
|
|
import Layout from "../layouts/LayoutDefault.js";
|
|
|
|
// Default config (can be overridden by pages)
|
|
// https://vike.dev/config
|
|
|
|
export default {
|
|
// https://vike.dev/Layout
|
|
Layout,
|
|
|
|
// https://vike.dev/head-tags
|
|
title: "My Vike App",
|
|
description: "Demo showcasing Vike",
|
|
|
|
passToClient: ["user"],
|
|
extends: vikeReact,
|
|
} satisfies Config;
|