16 lines
No EOL
344 B
JavaScript
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,
|
|
},
|
|
})
|
|
],
|
|
}) |