-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
73 lines (72 loc) · 2.04 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
const pkg = require('./package')
module.exports = {
apiKey: 'AIzaSyDBM8REAXrMtwLbO0Dv1iL6hEaU-jzVdFk',
projectId: 'vueshop-30fea',
authDomain: 'vueshop-30fea.firebaseapp.com',
ANALYTICS_TRACKING_ID: 'UA-49421899-3',
clearCart: true, // Whether to clear the cart after order is placed. Useful while testing
currency: { symbol: '₹', code: 'INR' },
manifest: {
name: 'Foodfire',
short_name: 'Foodfire',
start_url: '/',
display: 'standalone',
background_color: '#fff',
theme_color: '#555'
},
head: {
titleTemplate: 'Foodfire | %s',
title: pkg.description,
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css?family=Karla:400,700'
}
],
meta: [
{ 'http-equiv': 'X-UA-Compatible', content: 'IE=edge' },
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'keyword', name: 'keyword', content: pkg.keyword },
{ hid: 'description', name: 'description', content: pkg.description },
{
hid: 'og:title',
property: 'og:title',
content: pkg.description
},
{
hid: 'og:description',
property: 'og:description',
content: pkg.description
},
// {
// property: "og:image",
// content:
// "https://s3.envato.com/files/252462089/banner.png"
// },
{
hid: 'twitter:title',
property: 'twitter:title',
content: pkg.description
},
{
hid: 'twitter:description',
property: 'twitter:description',
content: pkg.description
},
{
hid: 'og:url',
property: 'og:url',
content: 'https://foodfire.info'
}
],
noscript: [
{
innerHTML: `We're sorry but Foodfire doesn't work properly without JavaScript enabled. Please enable it to continue.`
}
],
htmlAttrs: { lang: 'en' },
__dangerouslyDisableSanitizers: ['script']
}
}