diff options
Diffstat (limited to 'packages/astro/test/fixtures/astro-scripts/astro.config.mjs')
-rw-r--r-- | packages/astro/test/fixtures/astro-scripts/astro.config.mjs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/astro-scripts/astro.config.mjs b/packages/astro/test/fixtures/astro-scripts/astro.config.mjs new file mode 100644 index 000000000..e841c915c --- /dev/null +++ b/packages/astro/test/fixtures/astro-scripts/astro.config.mjs @@ -0,0 +1,8 @@ +import { defineConfig } from 'astro/config'; +import tailwind from '@astrojs/tailwind'; + +export default defineConfig({ + integrations: [ + tailwind() + ] +}) |