Skip to content

Commit

Permalink
fix(images): Fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh committed Mar 10, 2023
1 parent 60dc179 commit b13e737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/astro/src/assets/utils/emitAsset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import fs from 'node:fs';
import path from 'node:path';
import { pathToFileURL } from 'node:url';
import type { AstroSettings } from '../../@types/astro';
import { rootRelativePath } from '../../core/util';
import { imageMetadata } from './metadata';
import { rootRelativePath } from '../../core/util.js';
import { imageMetadata } from './metadata.js';

export async function emitESMImage(
id: string,
Expand Down

0 comments on commit b13e737

Please sign in to comment.