Fix webpack lookup issue
This commit is contained in:
parent
422df7c71f
commit
5724d14583
|
@ -10,7 +10,7 @@ let getGroupsOptions = () => {
|
|||
{
|
||||
shape: 'image',
|
||||
size: 50,
|
||||
image: '../' + require('../../images/nodes/' + groupName + '.png')
|
||||
image: require('../../images/nodes/' + groupName + '.png')
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -59,6 +59,9 @@ module.exports = {
|
|||
path.resolve(__dirname, 'src/')
|
||||
]
|
||||
},
|
||||
output: {
|
||||
publicPath: '/'
|
||||
},
|
||||
devServer: {
|
||||
proxy: {
|
||||
'/api': {
|
||||
|
|
Loading…
Reference in New Issue