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

16
node_modules/laravel-mix/src/Api.js generated vendored
View File

@@ -1,4 +1,3 @@
let Assert = require('./Assert');
let webpack = require('webpack');
let path = require('path');
@@ -6,12 +5,19 @@ class Api {
/**
* Enable sourcemap support.
*
* @param {Boolean} productionToo
* @param {string} type
* @param {Boolean} generateForProduction
* @param {string} devType
* @param {string} productionType
*/
sourceMaps(productionToo = true, type = 'eval-source-map') {
sourceMaps(
generateForProduction = true,
devType = 'eval-source-map',
productionType = 'source-map'
) {
let type = devType;
if (Mix.inProduction()) {
type = productionToo ? 'source-map' : false;
type = generateForProduction ? productionType : false;
}
Config.sourcemaps = type;