Skip to content

Commit

Permalink
Respect user manifest config (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessarcher committed Oct 11, 2022
1 parent 7346644 commit c35b819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function resolveLaravelPlugin(pluginConfig: Required<PluginConfig>): LaravelPlug
base: command === 'build' ? resolveBase(pluginConfig, assetUrl) : '',
publicDir: false,
build: {
manifest: !ssr,
manifest: userConfig.build?.manifest ?? !ssr,
outDir: userConfig.build?.outDir ?? resolveOutDir(pluginConfig, ssr),
rollupOptions: {
input: userConfig.build?.rollupOptions?.input ?? resolveInput(pluginConfig, ssr)
Expand Down

0 comments on commit c35b819

Please sign in to comment.