devscard/astro.config.ts
juyung 011c16fe86
Some checks failed
Main Branch / Run Prettier check (push) Has been cancelled
Main Branch / Run TypeScript check (push) Has been cancelled
Main Branch / Run Astro check (push) Has been cancelled
Main Branch / Run Percy check (push) Has been cancelled
Main Branch / Create release (push) Has been cancelled
Main Branch / Deploy to Netlify (push) Has been cancelled
Main Branch / Run Lighthouse check (push) Has been cancelled
Upload
2026-04-21 09:35:17 +09:00

18 lines
478 B
TypeScript

import image from '@astrojs/image';
import tailwind from '@astrojs/tailwind';
import compress from 'astro-compress';
import { defineConfig } from 'astro/config';
import { visualizer } from 'rollup-plugin-visualizer';
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), image(), compress()],
vite: {
plugins: [visualizer()],
resolve: {
alias: {
'date-fns/locale': 'date-fns/locale/index.js',
},
},
},
});