Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace require with import for error section images #2614

Merged
merged 10 commits into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/src/components/VErrorSection/VErrorImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import type { ErrorCode } from "~/constants/errors"
import { AttributableMedia, getAttribution } from "~/utils/attribution-html"
import { useI18n } from "~/composables/use-i18n"

import imageInfo from "~/assets/error_images/image_info.json"
import imageInfo from "~/assets/error_images.json"

interface ErrorImage extends AttributableMedia {
src: string
Expand Down Expand Up @@ -51,7 +51,7 @@ export default defineComponent({
const errorImage: ErrorImage = {
...image,
originalTitle: image.title,
src: require(`~/assets/error_images/${image.file}.jpg`),
src: `/error_images/${image.file}.jpg`,
alt: `errorImages.${image.id}`,
license: image.license as License,
license_version: image.license_version as LicenseVersion,
Expand Down