Initial Commit
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s

This commit is contained in:
2026-08-28 21:50:26 +10:00
commit d8d4ecbe8a
142 changed files with 25234 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import inertia from '@inertiajs/vite';
import { wayfinder } from '@laravel/vite-plugin-wayfinder';
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';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.ts'],
ssr: 'resources/js/ssr.ts',
refresh: true,
fonts: [bunny('Instrument Sans', { weights: [400, 500, 600] })],
}),
inertia(),
vue({
template: {
transformAssetUrls: { base: null, includeAbsolute: false },
},
}),
vuetify({ autoImport: true }),
wayfinder({ formVariants: true }),
],
ssr: {
noExternal: ['vuetify'],
},
});