-
Notifications
You must be signed in to change notification settings - Fork 7
/
nuxt.config.js
33 lines (33 loc) · 977 Bytes
/
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
module.exports = {
head: {
title: 'Test technique Totem / Ingima',
titleTemplate: '%s - Nuxt.js',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', content: "Nuxt.js project" }
],
script: [
{ src: 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.slim.min.js' },
{ src: 'https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: 'favicon.ico' },
{ rel: 'stylesheet', href: 'https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css' }
]
},
css: ['~assets/css/main.css'],
loading: { color: '#3B8070' },
plugins: ['~plugins/vue-notifications'],
build: {
vendor: [
'axios',
'lodash'
//'vue-notifications'
]
},
env: {
url: 'http://localhost:3000',
port: 3000
}
};