09f3e3cfdf
* Set the baseURL for ajax requests * Use async/await on AJAX calls * Add mix_public() cache generated asset cache busting * Move storage container into separate class * Fix some styling
13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
|
|
require('./../bootstrap');
|
|
|
|
// Import the bids functionality
|
|
import {addBid, removeBid} from './bids';
|
|
window.phpvms.bids = {
|
|
addBid,
|
|
removeBid,
|
|
};
|
|
|
|
// Import the mapping function
|
|
window.phpvms.map = require('../maps/index');
|