Update import paths in manifest.json and constants.ts files

This commit is contained in:
Emil Gulamov 2024-04-17 19:24:41 +04:00
parent 597ae6d03d
commit 6a6f08d83f
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
import ogImageSrc from "@/images/social.png"; import ogImageSrc from "@images/social.png";
export const SITE = { export const SITE = {
title: "ScrewFast", title: "ScrewFast",

View file

@ -1,7 +1,7 @@
import type { APIRoute, ImageMetadata } from "astro"; import type { APIRoute, ImageMetadata } from "astro";
import { getImage } from "astro:assets"; import { getImage } from "astro:assets";
import icon from "@/images/icon.png"; import icon from "@images/icon.png";
import maskableIcon from "@/images/icon-maskable.png"; import maskableIcon from "@images/icon-maskable.png";
interface Favicon { interface Favicon {
purpose: 'any' | 'maskable' | 'monochrome'; purpose: 'any' | 'maskable' | 'monochrome';