Moved to Vue

This commit is contained in:
2026-04-02 22:01:38 +10:00
parent 4adba94109
commit 0b14b40fd6
68 changed files with 4853 additions and 306 deletions
+10 -8
View File
@@ -1,18 +1,20 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import tailwindcss from '@tailwindcss/vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
input: 'resources/js/app.js',
refresh: true,
}),
tailwindcss(),
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false,
},
},
}),
],
server: {
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});