nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

View File

@@ -45,14 +45,12 @@ if (Mix.sees('laravel')) {
Mix.listen('init', () => {
if (Mix.shouldHotReload()) {
let http = process.argv.includes('--https') ? 'https' : 'http';
let port = process.argv.includes('--port')
? process.argv[process.argv.indexOf('--port') + 1]
: Config.hmrOptions.port;
new File(path.join(Config.publicPath, 'hot')).write(
http +
'://' +
Config.hmrOptions.host +
':' +
Config.hmrOptions.port +
'/'
http + '://' + Config.hmrOptions.host + ':' + port + '/'
);
}
});
@@ -67,5 +65,4 @@ let Api = require('./Api');
let api = new Api();
module.exports = api;
module.exports.mix = api; // Deprecated.
module.exports.config = Config;