-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
46 lines (46 loc) · 1.09 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
export default {
head: {
title: 'horizon',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' },
{ name: 'format-detection', content: 'telephone=no' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap',
},
],
},
css: ['@/assets/css/main.css', 'swiper/css/swiper.css'],
plugins: ['~/plugins/swiper', '~/plugins/feather-icons'],
components: true,
buildModules: ['@nuxtjs/eslint-module', '@nuxt/postcss8'],
modules: [
'@nuxtjs/pwa',
[
'@openafg/nuxt-fullpage',
{
activeSection: 0,
mouseWheelSensitivity: 120,
showIndicators: true,
},
],
],
pwa: {
manifest: {
lang: 'en',
},
},
build: {
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
},
}