Skip to content
This repository has been archived by the owner on Dec 19, 2020. It is now read-only.

Commit

Permalink
disable source code minification for production
Browse files Browse the repository at this point in the history
  • Loading branch information
vbloher committed Nov 21, 2018
1 parent 05c6520 commit fe758a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cyb",
"description": "Web3 browser",
"main": "public/electron.js",
"version": "0.0.25",
"version": "0.0.26",
"author": {
"name": "cybercongress",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/redux/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { init as initWallet, getStatus } from './wallet';

const initState = {
IPFS_END_POINT: 'http://earth.cybernode.ai:34402',
PARITTY_END_POINT: 'wss://rinkeby.infura.io/ws',
PARITTY_END_POINT: 'http://earth.cybernode.ai:34645',
SEARCH_END_POINT: 'http://earth.cybernode.ai:34660',

pending: false,
Expand Down
2 changes: 1 addition & 1 deletion webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function getPlugins(isProduction) {
module.exports = (env = {}, argv = {}) => {
const ENV = argv.mode || 'development';
const isProduction = ENV === 'production';
const SOURCE_MAP = env.SOURCE_MAP || '';
const SOURCE_MAP = env.SOURCE_MAP || 'eval-source-map';

return {
context: path.join(__dirname, '../', 'src'),
Expand Down

0 comments on commit fe758a9

Please sign in to comment.