--- import LegacyRedirectPage from "../../../../components/LegacyRedirectPage.astro"; export function getStaticPaths() { const years = ["2013", "2014", "2015", "2016", "2017", "2018"]; return years.map((year) => ({ params: { year }, props: { year }, })); } const { year } = Astro.props; ---