Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cjtantay committed Jun 13, 2024
1 parent c4ea322 commit ae19d00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/blocks/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export function createScriptBlock(pathPrefix, source) {
const { manifest } = source;
const { basePath, modern, css, preloads, legacy } = manifest;

const pathSrc = basePath && basePath !== 'http://localhost:3000' ? basePath : '';
const pathSrc =
basePath && basePath !== 'http://localhost:3000' ? basePath : '';

const modernEntry = modern[entry];
const cssEntry = css[entry];
Expand Down

0 comments on commit ae19d00

Please sign in to comment.