-
Notifications
You must be signed in to change notification settings - Fork 6
/
nuxt.config.ts
135 lines (119 loc) · 3.1 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import { defineNuxtConfig } from '@nuxt/bridge'
import app from './app.config'
import i18n from './locales/i18n'
export default defineNuxtConfig({
bridge: false,
// Target: https://go.nuxtjs.dev/config-target
target: 'static',
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
titleTemplate: (titleChunk) => {
return titleChunk ? `Noted | ${titleChunk}` : 'Noted'
},
title: undefined,
link: [
{
href: '/apple-touch-icon.png',
rel: 'apple-touch-icon',
sizes: '180x180',
},
],
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: ['prism-theme-vars', '~/assets/css/main'],
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
{ src: '~/plugins/host' },
{ src: '~/plugins/icons' },
{ src: '~/plugins/indentTextarea.client' },
{ src: '~/plugins/marked' },
{ src: '~/plugins/masonryWall' },
{ src: '~/plugins/persistedState.client' },
{ src: '~/plugins/pwaUpdate.client' },
],
// Auto import components: https://go.nuxtjs.dev/config-components
components: [
'~/components/atoms/',
'~/components/molecules/',
'~/components/organisms/',
],
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
// https://go.nuxtjs.dev/typescript
'@nuxt/typescript-build',
// https://go.nuxtjs.dev/stylelint
'@nuxtjs/stylelint-module',
// https://composition-api.nuxtjs.org/
'@nuxtjs/composition-api/module',
// https://color-mode.nuxtjs.org/
'@nuxtjs/color-mode',
// https://github.com/ivodolenc/nuxt-font-loader
'nuxt-font-loader',
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
// https://i18n.nuxtjs.org/
'@nuxtjs/i18n',
// https://go.nuxtjs.dev/pwa
'@nuxtjs/pwa',
// https://sitemap.nuxtjs.org/
'@nuxtjs/sitemap',
],
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {},
env: {
host: app.host,
},
colorMode: {
preference: 'system',
fallback: 'light',
},
fontLoader: {
url: 'https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap',
prefetch: true,
preconnect: true,
},
i18n: {
baseUrl: app.host,
defaultLocale: 'en',
noPrefixDefaultLocale: false,
locales: [
{
code: 'en',
name: 'English',
iso: 'en-US',
},
],
vueI18n: i18n,
},
loading: {
color: app.theme.secondaryColor,
},
// PWA module configuration: https://go.nuxtjs.dev/pwa
pwa: {
manifest: {
name: app.name,
short_name: app.name,
background_color: app.theme.primaryColor,
},
meta: {
favicon: false,
name: app.name,
ogImage: `${app.host}/icon-maskable-themed.png`,
ogHost: app.host,
theme_color: app.theme.primaryColor,
twitterCard: 'summary_large_image',
twitterCreator: '@DerYeger',
twitterSite: '@DerYeger',
},
icon: {
fileName: 'icon-maskable.png',
},
},
sitemap: {
gzip: true,
hostname: app.host,
i18n: true,
trailingSlash: true,
},
})