瀏覽代碼

feat(dev): don't proxy fonts

Use the local ones, this simplifies testing adding icons, for example.
j8
Saúl Ibarra Corretgé 6 年之前
父節點
當前提交
c9b910b1c1
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      webpack.config.js

+ 2
- 1
webpack.config.js 查看文件

@@ -187,7 +187,8 @@ module.exports = [
187 187
  * target, undefined; otherwise, the path to the local file to be served.
188 188
  */
189 189
 function devServerProxyBypass({ path }) {
190
-    if (path.startsWith('/css/') || path.startsWith('/doc/')) {
190
+    if (path.startsWith('/css/') || path.startsWith('/doc/')
191
+            || path.startsWith('/fonts/')) {
191 192
         return path;
192 193
     }
193 194
 

Loading…
取消
儲存