Fix dapps not loading (#4170)

* Add secure to dappsreg

* Remove trailing slash // fix dapps
This commit is contained in:
Nicolas Gotchac 2017-01-13 18:14:56 +01:00 committed by Jaco Greeff
parent 42ddb4f26c
commit 51ac34f1cc
2 changed files with 2 additions and 2 deletions

View File

@ -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' },

View File

@ -43,7 +43,7 @@ module.exports = {
index: './index.js'
}),
output: {
publicPath: '/',
// publicPath: '/',
path: path.join(__dirname, '../', DEST),
filename: '[name].[hash:10].js'
},