eggy
8f65123f32
Originally, it would attempt to load BASE_URL/Nuxt 3 (2022), which obviously does not exist.
14 lines
309 B
TypeScript
14 lines
309 B
TypeScript
interface SiteRevision {
|
|
title: string;
|
|
url: string;
|
|
}
|
|
|
|
export const revisions: SiteRevision[] = [
|
|
{
|
|
title: "Nuxt 3 (2022)",
|
|
url: "https://eggworld.tk",
|
|
},
|
|
{ title: "Eleventy (2021)", url: "https://2021.eggworld.tk" },
|
|
{ title: "Vanilla (2019-2020)", url: "https://2020.eggworld.tk" },
|
|
];
|