enable dropdown always

master
howard 2021-04-22 23:34:44 -07:00
parent da8dc7c5a1
commit 9aab8cab0b
2 changed files with 17 additions and 2 deletions

View File

@ -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 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' />
three.cad
</div>

View File

@ -2,6 +2,7 @@ const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
const webpack = require('webpack')
const TerserPlugin = require("terser-webpack-plugin");
module.exports = merge(common, {
@ -12,5 +13,18 @@ module.exports = merge(common, {
// 'process.env.NODE_ENV': 'production'
}),
new webpack.IgnorePlugin(/redux-logger/)
]
],
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
format: {
comments: false,
},
},
extractComments: false,
}),
],
}
});