add form properties and tailwind script

This commit is contained in:
2024-12-30 23:19:22 -07:00
parent d95928f3e8
commit 3ccab8ebed
6 changed files with 169 additions and 78 deletions

View File

@ -3,6 +3,8 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
import tailwind from "tailwindcss";
import autoprefixer from "autoprefixer";
// https://vite.dev/config/
export default defineConfig({
@ -10,6 +12,11 @@ export default defineConfig({
vue(),
vueDevTools(),
],
css: {
postcss: {
plugins: [tailwind, autoprefixer],
}
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))