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

@@ -1,7 +1,12 @@
let TerserPlugin = require('terser-webpack-plugin');
let OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
module.exports = function() {
return {
context: Mix.paths.root(),
mode: Mix.inProduction() ? 'production' : 'development',
entry: {},
output: {},
@@ -16,17 +21,33 @@ module.exports = function() {
timings: false,
children: false,
errorDetails: false,
entrypoints: false,
performance: Mix.inProduction(),
chunks: false,
modules: false,
reasons: false,
source: false,
publicPath: false
publicPath: false,
builtAt: false
},
performance: {
hints: false
},
optimization: Mix.inProduction()
? {
minimizer: [
new TerserPlugin(Config.terser),
new OptimizeCSSAssetsPlugin({
cssProcessorPluginOptions: {
preset: ['default', Config.cssNano]
}
})
]
}
: {},
devtool: Config.sourcemaps,
devServer: {