mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
import axios from 'axios';
|
|
|
|
window.axios = axios;
|
|
|
|
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
|
|
|
import toastr from 'toastr';
|
|
|
|
window.toastr = toastr;
|
|
|
|
window.toastr.options = {
|
|
"debug": false,
|
|
"positionClass": "toast-bottom-right",
|
|
"preventDuplicates": true,
|
|
}
|