fix(extras.astro): support astro.config.ts root

This commit is contained in:
Sandeep Dilip 2024-06-23 13:29:44 -04:00
parent 8ea3f690e6
commit b333a1ffb0
No known key found for this signature in database
GPG key ID: A542AE2057EF588B

View file

@ -3,9 +3,11 @@ return {
return LazyVim.extras.wants({
ft = "astro",
root = {
-- https://docs.astro.build/en/guides/configuring-astro/#supported-config-file-types
"astro.config.js",
"astro.config.mjs",
"astro.config.cjs",
"astro.config.ts",
},
})
end,