Skip to content

Commit

Permalink
chore: stray console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Jan 30, 2023
1 parent d556df7 commit 6e904db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/astro/src/content/vite-plugin-content-assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function astroContentProdBundlePlugin({ internals }: { internals: BuildIn
const pageViteID = pageInfo.id;
const pageData = getPageDataByViteID(internals, pageViteID);
if (!pageData) continue;
console.log({ pageData });

const entryCss = pageData.contentCollectionCss?.get(id);
const entryScripts = pageData.propagatedScripts?.get(id);
if (entryCss) {
Expand All @@ -95,7 +95,6 @@ export function astroContentProdBundlePlugin({ internals }: { internals: BuildIn
);
}
if (entryScripts) {
console.log({ entryScripts });
chunk.code = chunk.code.replace(
JSON.stringify(SCRIPTS_PLACEHOLDER),
JSON.stringify(
Expand Down

0 comments on commit 6e904db

Please sign in to comment.