* Embeddable ParityBar * Replacing storage with store * Fixing references. * Addressing style issues * Supporting parity background Conflicts: js/src/views/ParityBar/parityBar.js
This commit is contained in:
@@ -40,7 +40,8 @@ module.exports = {
|
||||
|
||||
context: path.join(__dirname, '../src'),
|
||||
entry: Object.assign({}, Shared.dappsEntry, {
|
||||
index: './index.js'
|
||||
index: './index.js',
|
||||
embed: './embed.js'
|
||||
}),
|
||||
output: {
|
||||
// publicPath: '/',
|
||||
@@ -173,6 +174,17 @@ module.exports = {
|
||||
]
|
||||
}),
|
||||
|
||||
new HtmlWebpackPlugin({
|
||||
title: 'Parity Bar',
|
||||
filename: 'embed.html',
|
||||
template: './index.ejs',
|
||||
favicon: FAVICON,
|
||||
chunks: [
|
||||
isProd ? null : 'commons',
|
||||
'embed'
|
||||
]
|
||||
}),
|
||||
|
||||
new ScriptExtHtmlWebpackPlugin({
|
||||
sync: [ 'commons', 'vendor.js' ],
|
||||
defaultAttribute: 'defer'
|
||||
|
||||
Reference in New Issue
Block a user