OutputPlugin configuration options.
• Optional
devServerEnabled: boolean
Whether the development server is enabled and running.
packages/repack/src/webpack/plugins/OutputPlugin.ts:14
• Optional
entry: string
The entry chunk name, 'main' by default.
packages/repack/src/webpack/plugins/OutputPlugin.ts:30
• Optional
localChunks: Rule
| Rule
[]
Mark all chunks as a local chunk, meaning they will be bundled into the .ipa
/.apk
file.
All chunks not matched by the rule(s) will become a remote one.
packages/repack/src/webpack/plugins/OutputPlugin.ts:19
• platform: string
Target application platform.
packages/repack/src/webpack/plugins/OutputPlugin.ts:12
• Optional
remoteChunksOutput: string
Output directory for all remote chunks and assets that are not bundled into
the .ipa
/.apk
file.
When left unspecified (undefined
), the files will be available under output.path
, next to
the main/index bundle and other local chunks.