enable dropdown always
parent
da8dc7c5a1
commit
9aab8cab0b
|
@ -168,7 +168,8 @@ export const NavBar = () => {
|
||||||
|
|
||||||
{/* <div className='w-auto h-full flex-1 flex items-center justify-end'> */}
|
{/* <div className='w-auto h-full flex-1 flex items-center justify-end'> */}
|
||||||
<div className='w-auto h-full flex-1 flex items-center justify-end md:justify-between'>
|
<div className='w-auto h-full flex-1 flex items-center justify-end md:justify-between'>
|
||||||
<div className='w-100 h-full items-center font-mono text-lg text-gray-200 select-none hidden md:flex mr-8'>
|
{/* <div className='w-100 h-full items-center font-mono text-lg text-gray-200 select-none hidden md:flex mr-8'> */}
|
||||||
|
<div className='w-100 h-full items-center font-mono text-lg text-gray-200 select-none flex mr-8'>
|
||||||
<Icon.Logo className='w-auto h-6 mx-1' />
|
<Icon.Logo className='w-auto h-6 mx-1' />
|
||||||
three.cad
|
three.cad
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,6 +2,7 @@ const { merge } = require('webpack-merge');
|
||||||
|
|
||||||
const common = require('./webpack.common.js');
|
const common = require('./webpack.common.js');
|
||||||
const webpack = require('webpack')
|
const webpack = require('webpack')
|
||||||
|
const TerserPlugin = require("terser-webpack-plugin");
|
||||||
|
|
||||||
module.exports = merge(common, {
|
module.exports = merge(common, {
|
||||||
|
|
||||||
|
@ -12,5 +13,18 @@ module.exports = merge(common, {
|
||||||
// 'process.env.NODE_ENV': 'production'
|
// 'process.env.NODE_ENV': 'production'
|
||||||
}),
|
}),
|
||||||
new webpack.IgnorePlugin(/redux-logger/)
|
new webpack.IgnorePlugin(/redux-logger/)
|
||||||
]
|
],
|
||||||
|
optimization: {
|
||||||
|
minimize: true,
|
||||||
|
minimizer: [
|
||||||
|
new TerserPlugin({
|
||||||
|
terserOptions: {
|
||||||
|
format: {
|
||||||
|
comments: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
extractComments: false,
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
}
|
||||||
});
|
});
|
Loading…
Reference in New Issue