Browse Source

Add some other paths to proxy bypass

master
Bettenbuk Zoltan 5 years ago
parent
commit
154200460d
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      webpack.config.js

+ 2
- 1
webpack.config.js View File

@@ -176,7 +176,8 @@ module.exports = [
176 176
  */
177 177
 function devServerProxyBypass({ path }) {
178 178
     if (path.startsWith('/css/') || path.startsWith('/doc/')
179
-            || path.startsWith('/fonts/')) {
179
+            || path.startsWith('/fonts/') || path.startsWith('/images/')
180
+            || path.startsWith('/static/')) {
180 181
         return path;
181 182
     }
182 183
 

Loading…
Cancel
Save