Initial
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
2026-07-04 18:24:44 +10:00
parent 3f6d532cf0
commit 0485b85a59
209 changed files with 1429 additions and 7372 deletions
+8 -2
View File
@@ -1,10 +1,11 @@
import inertia from '@inertiajs/vite';
import { wayfinder } from '@laravel/vite-plugin-wayfinder';
import tailwindcss from '@tailwindcss/vite';
import vue from '@vitejs/plugin-vue';
import laravel from 'laravel-vite-plugin';
import { bunny } from 'laravel-vite-plugin/fonts';
import { defineConfig } from 'vite';
import vuetify from 'vite-plugin-vuetify';
import path from 'path';
export default defineConfig({
plugins: [
@@ -17,7 +18,6 @@ export default defineConfig({
}),
],
}),
inertia(),
tailwindcss(),
vue({
template: {
@@ -27,8 +27,14 @@ export default defineConfig({
},
},
}),
vuetify({ autoImport: true }),
wayfinder({
formVariants: true,
}),
],
resolve: {
alias: {
'@': path.resolve(__dirname, 'resources/js'),
},
},
});