Initial commit 🚀

This commit is contained in:
2020-10-25 19:18:48 +01:00
parent 96092b2b42
commit 9933439ee8
60 changed files with 13639 additions and 30 deletions

4
config/Axios.ts Normal file
View File

@@ -0,0 +1,4 @@
export default {
baseUrl: 'http://localhost:3333',
credentials: true
}

11
config/Head.ts Normal file
View File

@@ -0,0 +1,11 @@
export default {
title: 'artsite',
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' }
]
}

4
config/index.ts Normal file
View File

@@ -0,0 +1,4 @@
import Axios from './Axios'
import Head from './Head'
export { Axios, Head }