Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed May 23, 2023
1 parent 883ce0c commit cfa992b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/astro/src/core/build/plugins/plugin-pages.ts
Expand Up @@ -30,8 +30,8 @@ function vitePluginPages(opts: StaticBuildOptions, internals: BuildInternals): V
const exports: string[] = [];
const content: string[] = [];
let i = 0;
imports.push(`import { renderers } from "${RENDERERS_MODULE_ID}"`);
exports.push(`export { renderers }`);
imports.push(`import { renderers } from "${RENDERERS_MODULE_ID}";`);
exports.push(`export { renderers };`);
for (const pageData of eachPageData(internals)) {
const variable = `_page${i}`;
imports.push(
Expand Down

0 comments on commit cfa992b

Please sign in to comment.