source: pages/+config.ts@ c30935a

main
Last change on this file since c30935a was 8ee4553, checked in by Bati <no-reply@…>, 7 months ago

scaffold Vike app with Bati

  • Property mode set to 100644
File size: 487 bytes
RevLine 
[8ee4553]1import type { Config } from "vike/types";
2import vikePhoton from "vike-photon/config";
3import vikeReact from "vike-react/config";
4
5// Default config (can be overridden by pages)
6// https://vike.dev/config
7
8export default {
9 // https://vike.dev/head-tags
10 title: "My Vike App",
11 description: "Demo showcasing Vike",
12
13 passToClient: ["user"],
14 extends: [vikeReact, vikePhoton],
15
16 // https://vike.dev/vike-photon
17 photon: {
18 server: "../server/entry.ts",
19 },
20} satisfies Config;
Note: See TracBrowser for help on using the repository browser.