aca31dbaac
* set up Settings component * Update network defaults * Short node identity signature check Fix tests * Do not set proxy only for this time * Update contract addresses * file restructure * file updates * add settings tab panels * update them color for nym fee * rework layout * update bond form to include signature and profit percent * create info tooltip + make status component optional * fix overflow * update sys vars tab * get mixnode bond details * use mixnode id in settings * set up profit percentage value on sys vars tab * profit percentage styling * add fix for delegations list * fix unbond UI bug * minor style updates * dont allow profit percent on gateway bonding * webpack prod fix * update profit percentage from settings area * hardcode signature for profit percentage update Co-authored-by: Bogdan-Ștefan Neacșu <bogdan@nymtech.net>
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
var path = require('path')
|
|
const common = require('./webpack.common')
|
|
const { default: merge } = require('webpack-merge')
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'production',
|
|
node: {
|
|
__dirname: false,
|
|
},
|
|
entry: path.resolve(__dirname, './src/index'),
|
|
})
|