diff options
author | Avi Gaffa <avi.gaffa@amdocs.com> | 2018-08-02 11:18:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-02 11:18:39 +0000 |
commit | 9c03995ead1a0f7732c1ce4223c540224b3ba837 (patch) | |
tree | 892322b0954896ef11ca8393371911f618d5fecf /workflow-designer-ui/src/main/frontend/webpack.config.js | |
parent | 87257b6054147f3c40999d03cdda936e194dccca (diff) | |
parent | b0a7e9384564f54d441e7da6503e4b4fec7f3d5b (diff) |
Merge "composition save & load"
Diffstat (limited to 'workflow-designer-ui/src/main/frontend/webpack.config.js')
-rw-r--r-- | workflow-designer-ui/src/main/frontend/webpack.config.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/workflow-designer-ui/src/main/frontend/webpack.config.js b/workflow-designer-ui/src/main/frontend/webpack.config.js index 23f53343..fa4e5d83 100644 --- a/workflow-designer-ui/src/main/frontend/webpack.config.js +++ b/workflow-designer-ui/src/main/frontend/webpack.config.js @@ -127,8 +127,13 @@ module.exports = (env, argv) => { include: srcPath }, { - test: /\.woff|\.woff2$/, - loader: 'file-loader' + test: /\.(eot|svg|ttf|woff|woff2)(\?.*)?$/, + use: [ + { + loader: 'file-loader', + options: {} + } + ] } ] }, |