0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

Revert "fix: sanitize slashes in filepaths"

This reverts commit 5c3a75fac8.
This commit is contained in:
Goulven Clec'h 2024-04-29 14:22:04 +02:00
parent 5c3a75fac8
commit 896caf9e6c

View file

@ -9,11 +9,7 @@ import * as vite from 'vite';
import type { RouteData } from '../../@types/astro.js';
import { PROPAGATED_ASSET_FLAG } from '../../content/consts.js';
import { hasAnyContentFlag } from '../../content/utils.js';
import {
type BuildInternals,
createBuildInternals,
getPageDatasWithPublicKey,
} from '../../core/build/internal.js';
import { type BuildInternals, createBuildInternals, getPageDatasWithPublicKey } from '../../core/build/internal.js';
import { emptyDir, removeEmptyDirs } from '../../core/fs/index.js';
import { appendForwardSlash, prependForwardSlash, removeFileExtension } from '../../core/path.js';
import { isModeServerWithNoAdapter } from '../../core/util.js';
@ -377,11 +373,7 @@ async function cleanStaticOutput(
const { moduleSpecifier } = pageData;
const pageBundleId = internals.pageToBundleMap.get(moduleSpecifier);
const entryBundleId = internals.entrySpecifierToBundleMap.get(moduleSpecifier);
if (
pageData.route.prerender &&
!pageData.hasSharedModules &&
allStaticFiles.has(pageBundleId ?? entryBundleId)
) {
if (pageData.route.prerender && !pageData.hasSharedModules && allStaticFiles.has(pageBundleId ?? entryBundleId)) {
allStaticFiles.add(pageBundleId ?? entryBundleId);
} else {
// Check if the page pageBundleId or entryBundleId is already in the set, if so, remove it
@ -544,7 +536,6 @@ export function makeAstroPageEntryPointFileName(
return `pages${name
.replace(/\/$/, '/index')
.replaceAll(/[[\]]/g, '_')
.replaceAll('/', '-')
.replaceAll('...', '---')}.astro.mjs`;
}