Error message: clarify "adapter does not have previewEntrypoint" (#5182)
* clarify preview error message * Update packages/astro/src/core/preview/index.ts Co-authored-by: Chris Swithinbank <swithinbank@gmail.com> Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
This commit is contained in:
parent
707cac9fdf
commit
81310b1dde
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export default async function preview(
|
|||
throw new Error(`[preview] No adapter found.`);
|
||||
}
|
||||
if (!settings.adapter.previewEntrypoint) {
|
||||
throw new Error(`[preview] adapter does not have previewEntrypoint.`);
|
||||
throw new Error(`[preview] The ${settings.adapter.name} adapter does not support the preview command.`);
|
||||
}
|
||||
// We need to use require.resolve() here so that advanced package managers like pnpm
|
||||
// don't treat this as a dependency of Astro itself. This correctly resolves the
|
||||
|
|
Loading…
Reference in a new issue