mirror of
https://codeberg.org/Sevichecc/Seigwai.git
synced 2025-04-30 07:49:30 +08:00
21 lines
485 B
TypeScript
21 lines
485 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import tailwindcss from 'tailwindcss'
|
|
import autoprefixer from 'autoprefixer'
|
|
import tailwindConfig from './tailwind.config'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
css: {
|
|
postcss: {
|
|
plugins: [tailwindcss(tailwindConfig), autoprefixer()],
|
|
},
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
Components({
|
|
dts: true,
|
|
}),
|
|
],
|
|
})
|