diff --git a/js/src/dapps/index.js b/js/src/dapps/index.js index 584fbb319..32e2ececd 100644 --- a/js/src/dapps/index.js +++ b/js/src/dapps/index.js @@ -16,7 +16,7 @@ module.exports = [ { name: 'basiccoin', entry: 'basiccoin.js', title: 'Basic Token Deployment' }, - { name: 'dappreg', entry: 'dappreg.js', title: 'Dapp Registry' }, + { name: 'dappreg', entry: 'dappreg.js', title: 'Dapp Registry', secure: true }, { name: 'githubhint', entry: 'githubhint.js', title: 'GitHub Hint', secure: true }, { name: 'localtx', entry: 'localtx.js', title: 'Local transactions Viewer', secure: true }, { name: 'registry', entry: 'registry.js', title: 'Registry' }, diff --git a/js/webpack/app.js b/js/webpack/app.js index 0db813fbf..3375ff178 100644 --- a/js/webpack/app.js +++ b/js/webpack/app.js @@ -43,7 +43,7 @@ module.exports = { index: './index.js' }), output: { - publicPath: '/', + // publicPath: '/', path: path.join(__dirname, '../', DEST), filename: '[name].[hash:10].js' },