2020-09-04 23:50:05 +08:00
|
|
|
/**
|
|
|
|
* Before you edit these, read the documentation on how these files are compiled:
|
|
|
|
* https://docs.phpvms.net/customize/building-assets
|
|
|
|
*
|
|
|
|
* Edits here don't take place until you compile these assets and then upload them.
|
|
|
|
*/
|
|
|
|
|
2018-03-13 06:30:52 +08:00
|
|
|
/**
|
|
|
|
* Bootstrap any Javascript libraries required
|
|
|
|
*/
|
|
|
|
|
2019-08-30 20:08:00 +08:00
|
|
|
import Storage from './storage';
|
|
|
|
import config from './config';
|
|
|
|
import request from './request';
|
2019-08-28 03:08:42 +08:00
|
|
|
|
2018-03-28 07:18:25 +08:00
|
|
|
window.axios = require('axios');
|
2018-03-13 06:30:52 +08:00
|
|
|
|
2018-03-13 09:14:55 +08:00
|
|
|
/**
|
|
|
|
* Container for phpVMS specific functions
|
|
|
|
*/
|
2019-08-28 03:08:42 +08:00
|
|
|
window.phpvms = {
|
2019-08-30 20:08:00 +08:00
|
|
|
config,
|
|
|
|
request,
|
2019-08-28 03:08:42 +08:00
|
|
|
Storage,
|
|
|
|
};
|
2018-03-13 06:30:52 +08:00
|
|
|
|
2018-05-04 04:07:16 +08:00
|
|
|
require('./common');
|