mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
export default ({ $axios, app }) => {
|
|
$axios.onRequest(config => {
|
|
console.log(Object.keys(app))
|
|
// add current ui language
|
|
config.headers['Accept-Language'] = app.$i18n.locale()
|
|
})
|
|
}
|