0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00

[ci] format

This commit is contained in:
bluwy 2023-01-27 15:16:11 +00:00 committed by fredkbot
parent 254eb21c83
commit 2565bc453e

View file

@ -85,10 +85,7 @@ async function getPostCssConfig(
return postcssConfigResult;
}
async function getViteConfiguration(
tailwindConfig: TailwindConfig,
viteConfig: UserConfig
) {
async function getViteConfiguration(tailwindConfig: TailwindConfig, viteConfig: UserConfig) {
// We need to manually load postcss config files because when inlining the tailwind and autoprefixer plugins,
// that causes vite to ignore postcss config files
const postcssConfigResult = await getPostCssConfig(viteConfig.root, viteConfig.css?.postcss);