astro 1.6.0
Minor Changes
-
#5147
0bf0758fbThanks @natemoo-re! - Addastro/typesentrypoint. These utilities can be used for common prop type patterns.HTMLAttributesIf you would like to extend valid HTML attributes for a given HTML element, you may use the provided
HTMLAttributestype—it accepts an element name and returns the valid HTML attributes for that element name.import { HTMLAttributes } from 'astro/types'; interface Props extends HTMLAttributes<'a'> { myProp?: string; } -
#5164
4a8a346caThanks @MoustaphaDev! - Add support for markdown files with the following extensions:.markdown.mdown.mkdn.mkd.mdwn
-
#4917
ddf2f8390Thanks @natemoo-re! - Add support for--baseCLI argument, which will override thebaseset in yourastro.config.mjsfile.astro --site https://astro.build --base /docs