manually correcting import ordering to unblock CI (#3798)

This commit is contained in:
Tony Sullivan 2022-07-01 20:24:45 +00:00 committed by GitHub
parent 5953a6ca0d
commit b9d26f39e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
// @ts-ignore
import type { APIRoute } from 'astro';
import { lookup } from 'mrmime';
// @ts-ignore
import loader from 'virtual:image-loader';
import { loadImage } from '../utils.js';

View file

@ -1,7 +1,7 @@
// @ts-ignore
import type { APIRoute } from 'astro';
import etag from 'etag';
import { lookup } from 'mrmime';
// @ts-ignore
import loader from 'virtual:image-loader';
import { isRemoteImage, loadRemoteImage } from '../utils.js';