mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-03-28 17:42:55 +01:00
19 lines
489 B
TypeScript
19 lines
489 B
TypeScript
import vikeReact from "vike-react/config"
|
|
import type { Config } from "vike/types"
|
|
|
|
// Default config (can be overridden by pages)
|
|
// https://vike.dev/config
|
|
|
|
export default {
|
|
// https://vike.dev/head-tags
|
|
title: "Mesh Forge",
|
|
description:
|
|
"Build custom firmware with third-party plugins: BBS's, custom hardware, games, and more. An open ecosystem growing to hundreds of plugins.",
|
|
|
|
extends: [vikeReact],
|
|
prerender: {
|
|
partial: true,
|
|
},
|
|
ssr: false,
|
|
} satisfies Config
|