Skip to content

Commit

Permalink
fix: override ouput.manualChunks using false (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
mammadataei committed Jul 15, 2023
1 parent b004eb0 commit 145627a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ function vitePreprocessor(
},
rollupOptions: {
output: {
manualChunks: undefined, // override any manualChunks from the user config because they don't work with UMD
}
}
manualChunks: false as any, // override any manualChunks from the user config because they don't work with UMD

Check warning on line 87 in src/index.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type
},
},
},
}

Expand Down

0 comments on commit 145627a

Please sign in to comment.