-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
62 lines (55 loc) · 1.43 KB
/
nuxt.config.js
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
export default {
ssr: false,
target: 'static',
head: {
title: 'Camera Calculator – Free Calculator for Film Camera Department',
meta: [{charset: 'utf-8'}, {name: 'viewport', content: 'width=device-width, initial-scale=1'}],
link: [
{
rel: 'icon',
type: 'image/png',
sizes: '192x192',
href: 'favicon-192.png',
},
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: 'favicon-32.png',
},
{
rel: 'apple-touch-icon',
type: 'image/png',
sizes: '180x180',
href: 'favicon-180.png',
},
],
},
publicRuntimeConfig: {
baseUrl: 'https://cameracalc.reinaldyrafli.com',
author: 'Reinaldy Rafli',
title: 'Camera Calculator – Free Calculator for Film Camera Department',
description: 'Calculate things like photometrics, focal length equivalent, and more..',
language: 'English',
socialIcon: 'head-icon.png',
},
components: true,
loading: {color: '#fff'},
css: [],
plugins: [],
buildModules: ['nuxt-windicss'],
modules: ['nuxt-webfontloader', '@nuxtjs/sitemap', '@nuxtjs/google-gtag', '@nuxtjs/robots'],
webfontloader: {
google: {
families: ['Inter:300,400,700'],
},
},
sitemap: {
hostname: 'https://cameracalc.reinaldyrafli.com',
gzip: true,
exclude: ['/_nuxt/**'],
},
'google-gtag': {
id: process.env.GTAG_ID || '',
},
};