14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
import type { Config } from 'vike/types'
|
|
import vikeVue from 'vike-vue/config'
|
|
|
|
// Default config (can be overridden by pages)
|
|
// https://vike.dev/config
|
|
|
|
export default {
|
|
// https://vike.dev/head-tags
|
|
title: 'My Vike App',
|
|
description: 'Demo showcasing Vike',
|
|
|
|
extends: [vikeVue],
|
|
} as Config
|