summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/core/base-pipeline.ts2
-rw-r--r--packages/astro/src/core/build/generate.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/core/base-pipeline.ts b/packages/astro/src/core/base-pipeline.ts
index d2cf1f053..bbaf7da6c 100644
--- a/packages/astro/src/core/base-pipeline.ts
+++ b/packages/astro/src/core/base-pipeline.ts
@@ -1,4 +1,5 @@
import type { ZodType } from 'zod';
+import { NOOP_ACTIONS_MOD } from '../actions/noop-actions.js';
import type { ActionAccept, ActionClient } from '../actions/runtime/virtual/server.js';
import { createI18nMiddleware } from '../i18n/middleware.js';
import type { ComponentInstance } from '../types/astro.js';
@@ -19,7 +20,6 @@ import { NOOP_MIDDLEWARE_FN } from './middleware/noop-middleware.js';
import { sequence } from './middleware/sequence.js';
import { RouteCache } from './render/route-cache.js';
import { createDefaultRoutes } from './routing/default.js';
-import { NOOP_ACTIONS_MOD } from '../actions/noop-actions.js';
/**
* The `Pipeline` represents the static parts of rendering that do not change between requests.
diff --git a/packages/astro/src/core/build/generate.ts b/packages/astro/src/core/build/generate.ts
index c91dc48de..f612ec7fa 100644
--- a/packages/astro/src/core/build/generate.ts
+++ b/packages/astro/src/core/build/generate.ts
@@ -3,6 +3,7 @@ import os from 'node:os';
import { bgGreen, black, blue, bold, dim, green, magenta, red, yellow } from 'kleur/colors';
import PLimit from 'p-limit';
import PQueue from 'p-queue';
+import { NOOP_ACTIONS_MOD } from '../../actions/noop-actions.js';
import {
generateImagesForPath,
getStaticImageList,
@@ -49,7 +50,6 @@ import type {
StylesheetAsset,
} from './types.js';
import { getTimeStat, shouldAppendForwardSlash } from './util.js';
-import { NOOP_ACTIONS_MOD } from '../../actions/noop-actions.js';
export async function generatePages(options: StaticBuildOptions, internals: BuildInternals) {
const generatePagesTimer = performance.now();