diff --git a/packages/astro/src/vite-plugin-ssr-manifest/index.ts b/packages/astro/src/vite-plugin-ssr-manifest/index.ts index a6cb94915..4ced3d032 100644 --- a/packages/astro/src/vite-plugin-ssr-manifest/index.ts +++ b/packages/astro/src/vite-plugin-ssr-manifest/index.ts @@ -1,4 +1,3 @@ - import type { Plugin as VitePlugin } from 'vite'; const manifestVirtualModuleId = 'astro:ssr-manifest'; @@ -9,7 +8,7 @@ export function vitePluginSSRManifest(): VitePlugin { name: '@astrojs/vite-plugin-astro-ssr-manifest', enforce: 'post', resolveId(id, parent) { - if(id === manifestVirtualModuleId) { + if (id === manifestVirtualModuleId) { return resolvedManifestVirtualModuleId; } }, diff --git a/packages/astro/test/ssr-manifest.test.js b/packages/astro/test/ssr-manifest.test.js index cb24e02ea..519f86a66 100644 --- a/packages/astro/test/ssr-manifest.test.js +++ b/packages/astro/test/ssr-manifest.test.js @@ -1,4 +1,3 @@ - import { expect } from 'chai'; import { loadFixture } from './test-utils.js'; import testAdapter from './test-adapter.js'; @@ -25,6 +24,5 @@ describe('astro:ssr-manifest', () => { const $ = cheerio.load(html); expect($('#assets').text()).to.equal('["/_astro/index.1bad7273.css"]'); - }); });