mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
export default ({ $axios, app }) => {
|
|
$axios.onRequest(config => {
|
|
/* eslint-disable-next-line no-console */
|
|
console.log(Object.keys(app))
|
|
// add current ui language
|
|
config.headers['Accept-Language'] = app.$i18n.locale()
|
|
})
|
|
}
|