فهرست منبع

chore: suppress rollup plugin replace warning

Evan You 5 سال پیش
والد
کامیت
414c265dd9
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      rollup.config.js

+ 4 - 1
rollup.config.js

@@ -235,7 +235,10 @@ function createReplacePlugin(
       replacements[key] = process.env[key]
     }
   })
-  return replace(replacements)
+  return replace({
+    values: replacements,
+    preventAssignment: true
+  })
 }
 
 function createProductionConfig(format) {