fix(nitro): disable externals in worker preset (#535)

This commit is contained in:
Ahad Birang 2021-09-20 13:50:55 +04:30 committed by GitHub
parent d05d8821a0
commit 3e0e24f80d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,5 +4,6 @@ export const worker: NitroPreset = {
entry: null, // Abstract
node: false,
minify: true,
externals: false,
inlineDynamicImports: true // iffe does not support code-splitting
}