Removed /dist prefix from all image paths

This commit is contained in:
2022-01-03 20:29:03 +01:00
parent d43c12b103
commit d640f7f882
4 changed files with 278 additions and 244 deletions

View File

@@ -80,7 +80,7 @@ export default {
if (this.movie.poster != null) {
this.poster = "https://image.tmdb.org/t/p/w500" + this.movie.poster;
} else {
this.poster = "/dist/no-image.png";
this.poster = "/no-image.png";
}
},
mounted() {