Skip to content

Commit

Permalink
fix: disabled public asset handler name is null
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Nov 19, 2023
1 parent 926bcef commit b7a6a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rollup/plugins/public-assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export function readAsset (id) {
);

const readAssetImport = `#internal/nitro/virtual/public-assets-${
readAssetHandler[nitro.options.serveStatic as string] || "none"
readAssetHandler[nitro.options.serveStatic as string] || "null"
}`;

return `
Expand Down

0 comments on commit b7a6a1a

Please sign in to comment.