jingrow-ui/vite.config.ts
jingrow c7bac1a7a0
Some checks failed
Publish on NPM / publish (push) Has been cancelled
Build and Deploy Storybook / build (push) Has been cancelled
Tests / test (push) Has been cancelled
initial commit
2025-10-24 00:40:30 +08:00

18 lines
418 B
TypeScript

import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { lucideIcons } from './vite/lucideIcons'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), lucideIcons()],
resolve: {
alias: {
'tailwind.config.js': path.resolve(__dirname, 'tailwind.config.js'),
},
},
optimizeDeps: {
include: ['tailwind.config.js'],
},
})