mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-27 18:30:32 +01:00
Initial commit 🚀
This commit is contained in:
4
config/Axios.ts
Normal file
4
config/Axios.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export default {
|
||||
baseUrl: 'http://localhost:3333',
|
||||
credentials: true
|
||||
}
|
||||
11
config/Head.ts
Normal file
11
config/Head.ts
Normal 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
4
config/index.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import Axios from './Axios'
|
||||
import Head from './Head'
|
||||
|
||||
export { Axios, Head }
|
||||
Reference in New Issue
Block a user