cmziuk/vite.config.js
2025-08-07 23:35:10 +01:00

16 lines
No EOL
344 B
JavaScript

import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
import Icons from 'unplugin-icons/vite'
export default defineConfig({
plugins: [
tailwindcss(),
Icons({
compiler: 'web-components',
webComponents: {
autoDefine: true,
},
})
],
})