소스 검색

fix: fuse missing shims

NGPixel 8 년 전
부모
커밋
3d72c4ca95
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      fuse.js

+ 1 - 1
fuse.js

@@ -116,7 +116,7 @@ globalTasks.then(() => {
 
   // const bundleVendor = fuse.bundle('vendor').shim(SHIMS).instructions('~ index.js') // eslint-disable-line no-unused-vars
   // const bundleApp = fuse.bundle('app').instructions('!> [index.js]')
-  const bundleApp = fuse.bundle('app').instructions('> index.js')
+  const bundleApp = fuse.bundle('app').shim(SHIMS).instructions('> index.js')
   const bundleSetup = fuse.bundle('configure').instructions('> configure.js')
 
   switch (mode) {