-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
36 lines (34 loc) · 1.05 KB
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import pkg from './package.json'
// import { capitalize } from './node_modules/@lovkyndig/create-google-app/utils/capitalize-method'
export default defineNuxtConfig({
extends: '@lovkyndig/create-google-app',
runtimeConfig: {
timestamp: {
created: false,
updated: false
},
site: {
title: 'PWA Starter App',
description: pkg.description,
image: `${pkg.homepage}/img/svg/avatar.svg`, // avatar also in appconfig
favicon: `${pkg.homepage}/favicon.svg`, // favicon also in appconfig
copyright: `All rights reserved ${(new Date()).getFullYear()}, Kyrie Eleison`
},
public: {
hostname: pkg.homepage
}
},
typescript: {
typeCheck: false
}
})
/*
Credits:
https://nuxt.com/docs/getting-started/layers
https://nuxt.com/docs/guide/going-further/layers
https://tairo.cssninja.io/documentation/setup/nuxt-and-layers
https://github.com/nuxt/nuxt/issues/13367
https://github.com/nuxt/starter/tree/layer
https://github.com/nuxt-themes/starter
https://github.com/viandwi24/nuxt3-awesome-starter/tree/v2
*/