mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] format
This commit is contained in:
parent
89a2a07c2e
commit
b8cc444461
3 changed files with 12 additions and 6 deletions
|
@ -265,7 +265,7 @@ export async function generateLookupMap({
|
|||
collection,
|
||||
slug,
|
||||
lookupMap[collection]!.entries[slug],
|
||||
rootRelativePath(root, filePath),
|
||||
rootRelativePath(root, filePath)
|
||||
),
|
||||
hint:
|
||||
slug !== generatedSlug
|
||||
|
|
|
@ -1293,11 +1293,13 @@ export const DuplicateContentEntrySlugError = {
|
|||
name: 'DuplicateContentEntrySlugError',
|
||||
title: 'Duplicate content entry slug.',
|
||||
message: (collection: string, slug: string, preExisting: string, alsoFound: string) => {
|
||||
return `**${collection}** contains multiple entries with the same slug: \`${slug}\`. ` +
|
||||
return (
|
||||
`**${collection}** contains multiple entries with the same slug: \`${slug}\`. ` +
|
||||
`Slugs must be unique.\n\n` +
|
||||
`Entries: \n` +
|
||||
`- ${preExisting}\n` +
|
||||
`- ${alsoFound}`;
|
||||
`- ${alsoFound}`
|
||||
);
|
||||
},
|
||||
} satisfies ErrorData;
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ export async function renderEndpoint(
|
|||
const handler = mod[method] ?? mod['ALL'];
|
||||
if (!ssr && ssr === false && method !== 'GET') {
|
||||
logger.warn(
|
||||
"router",
|
||||
'router',
|
||||
`${url.pathname} ${bold(
|
||||
method
|
||||
)} requests are not available for a static site. Update your config to \`output: 'server'\` or \`output: 'hybrid'\` to enable.`
|
||||
|
@ -26,8 +26,12 @@ export async function renderEndpoint(
|
|||
logger.warn(
|
||||
'router',
|
||||
`No API Route handler exists for the method "${method}" for the route ${url.pathname}.\n` +
|
||||
`Found handlers: ${Object.keys(mod).map(exp => JSON.stringify(exp)).join(', ')}\n` +
|
||||
('all' in mod ? `One of the exported handlers is "all" (lowercase), did you mean to export 'ALL'?\n` : '')
|
||||
`Found handlers: ${Object.keys(mod)
|
||||
.map((exp) => JSON.stringify(exp))
|
||||
.join(', ')}\n` +
|
||||
('all' in mod
|
||||
? `One of the exported handlers is "all" (lowercase), did you mean to export 'ALL'?\n`
|
||||
: '')
|
||||
);
|
||||
// No handler found, so this should be a 404. Using a custom header
|
||||
// to signal to the renderer that this is an internal 404 that should
|
||||
|
|
Loading…
Add table
Reference in a new issue