-
Notifications
You must be signed in to change notification settings - Fork 4
/
nuxt.config.ts
49 lines (42 loc) · 1014 Bytes
/
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
export default {
head: {
title: 'Facebook',
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' }
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
},
css: ['normalize.css/normalize.css', '@/assets/scss/base.scss'],
plugins: [
'@/plugins/accessor',
'@/plugins/notifications.client',
'@/plugins/axios'
],
components: [{ path: '@/components/', pathPrefix: false }],
buildModules: [
'@nuxt/typescript-build',
'@nuxtjs/style-resources',
'@nuxtjs/fontawesome'
],
styleResources: {
scss: ['@/components/bosons/*.scss']
},
fontawesome: {
component: 'fa',
icons: {
solid: true,
brands: true
}
},
modules: ['@nuxtjs/axios', 'cookie-universal-nuxt'],
// URL BASE DA API:
axios: {
baseUrl: 'http://127.0.0.1:3333'
},
build: {}
}