mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import { NitroPreset } from '../context'
|
|
|
|
export const worker: NitroPreset = {
|
|
entry: null, // Abstract
|
|
node: false,
|
|
minify: true,
|
|
externals: false,
|
|
inlineDynamicImports: true // iffe does not support code-splitting
|
|
}
|