diff --git a/packages/astro/src/core/config/vite-load.ts b/packages/astro/src/core/config/vite-load.ts index a864c784fdd0..97ae63079230 100644 --- a/packages/astro/src/core/config/vite-load.ts +++ b/packages/astro/src/core/config/vite-load.ts @@ -2,8 +2,8 @@ import type fsType from 'fs'; import npath from 'path'; import { pathToFileURL } from 'url'; import * as vite from 'vite'; -import { AstroError, AstroErrorData } from '../errors/index.js'; import loadFallbackPlugin from '../../vite-plugin-load-fallback/index.js'; +import { AstroError, AstroErrorData } from '../errors/index.js'; // Fallback for legacy import load from '@proload/core'; @@ -28,7 +28,7 @@ async function createViteLoader(root: string, fs: typeof fsType): Promise { flags: {}, cmd: 'dev', logging: defaultLogging, - fsMod: fs + fsMod: fs, }); const settings = createSettings(astroConfig); await runInContainer({ fs, root, settings }, () => { - expect(true).to.equal(true, 'We were able to get into the container which means the config loaded.'); + expect(true).to.equal( + true, + 'We were able to get into the container which means the config loaded.' + ); }); }); });