correction, ajout gitignore

This commit is contained in:
Thibaud
2019-07-06 13:25:00 +02:00
commit 28d1936dee
182 changed files with 28900 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
export default {
"siteUrl": "",
"siteName": "Popsu",
"titleTemplate": "%s - Popsu",
"siteDescription": "",
"version": "0.6.5"
}
+2
View File
@@ -0,0 +1,2 @@
export const NOT_FOUND_NAME = "404"
export const NOT_FOUND_PATH = "/404"
+49
View File
@@ -0,0 +1,49 @@
export default {
"touchiconMimeType": "image/png",
"faviconMimeType": "image/png",
"precomposed": false,
"touchicons": [
{
"width": 76,
"height": 76,
"src": "/assets/static/src/favicon.png?width=76"
},
{
"width": 152,
"height": 152,
"src": "/assets/static/src/favicon.png?width=152"
},
{
"width": 120,
"height": 120,
"src": "/assets/static/src/favicon.png?width=120"
},
{
"width": 167,
"height": 167,
"src": "/assets/static/src/favicon.png?width=167"
},
{
"width": 180,
"height": 180,
"src": "/assets/static/src/favicon.png?width=180"
}
],
"favicons": [
{
"width": 16,
"height": 16,
"src": "/assets/static/src/favicon.png?width=16"
},
{
"width": 32,
"height": 32,
"src": "/assets/static/src/favicon.png?width=32"
},
{
"width": 96,
"height": 96,
"src": "/assets/static/src/favicon.png?width=96"
}
]
}
+1
View File
@@ -0,0 +1 @@
export default 1562412036602
+3
View File
@@ -0,0 +1,3 @@
export default [
]
+3
View File
@@ -0,0 +1,3 @@
export default [
]
+21
View File
@@ -0,0 +1,21 @@
export default [
{
name: "home",
path: "/",
component: () => import(/* webpackChunkName: "page--src--pages--index-vue" */ "/home/thibaud/Bureau/popsu_html2print/src/pages/Index.vue"),
meta: {
data: true
}
},
{
name: "404",
path: "/404",
component: () => import(/* webpackChunkName: "page--node-modules--gridsome--app--pages--404-vue" */ "/home/thibaud/Bureau/popsu_html2print/node_modules/gridsome/app/pages/404.vue")
},
{
name: "*",
path: "*",
component: () => import(/* webpackChunkName: "page--node-modules--gridsome--app--pages--404-vue" */ "/home/thibaud/Bureau/popsu_html2print/node_modules/gridsome/app/pages/404.vue")
}
]