Skip to content

Commit

Permalink
Prevent bundling sharp
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy committed Aug 23, 2023
1 parent 9f18814 commit 4d89b6e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .changeset/spicy-stingrays-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Prevent bundling sharp as it errors in runtime
25 changes: 13 additions & 12 deletions packages/astro/src/core/build/plugins/plugin-internals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { UserConfig, Plugin as VitePlugin } from 'vite';
import type { Plugin as VitePlugin } from 'vite';
import type { BuildInternals } from '../internal.js';
import type { AstroBuildPlugin } from '../plugin';
import { normalizeEntryId } from './plugin-component-entry.js';
Expand All @@ -8,19 +8,20 @@ export function vitePluginInternals(input: Set<string>, internals: BuildInternal
name: '@astro/plugin-build-internals',

config(config, options) {
const extra: Partial<UserConfig> = {};
const noExternal = [],
external = [];
if (options.command === 'build' && config.build?.ssr) {
noExternal.push('astro');
external.push('shiki');
return {
ssr: {
// Always bundle Astro runtime when building for SSR
noExternal: ['astro'],
// Except for these packages as they're not bundle-friendly. Users with strict package installations
// need to manually install these themselves if they use the related features.
external: [
'shiki', // For syntax highlighting
'sharp', // For sharp image service
],
},
};
}

extra.ssr = {
external,
noExternal,
};
return extra;
},

async generateBundle(_options, bundle) {
Expand Down

0 comments on commit 4d89b6e

Please sign in to comment.