From 51ac34f1cc86ab765658a870c360e5dc96e19163 Mon Sep 17 00:00:00 2001 From: Nicolas Gotchac Date: Fri, 13 Jan 2017 18:14:56 +0100 Subject: [PATCH] Fix dapps not loading (#4170) * Add secure to dappsreg * Remove trailing slash // fix dapps --- js/src/dapps/index.js | 2 +- js/webpack/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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' },