me
/
ethanreece.com
Archived
1
0
Fork 0
This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ethanreece.com/astro.config.mjs

10 lines
250 B
JavaScript
Raw Normal View History

2023-05-31 05:45:49 +00:00
import { defineConfig } from 'astro/config'
import tailwind from '@astrojs/tailwind'
2023-05-24 17:57:59 +00:00
2023-05-31 05:45:49 +00:00
import { astroImageTools } from 'astro-imagetools'
2023-05-24 18:10:24 +00:00
2023-05-24 17:57:59 +00:00
// https://astro.build/config
2023-05-24 18:10:24 +00:00
export default defineConfig({
2023-05-31 05:45:49 +00:00
integrations: [tailwind(), astroImageTools],
})