first commit

This commit is contained in:
f4ilji
2024-09-19 16:06:49 +05:00
commit b686638a39
1664 changed files with 428174 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
build: {
manifest: "manifest.json",
},
plugins: [
laravel({
input: 'resources/js/app.js',
refresh: true,
}),
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false,
},
},
}),
],
server: {
host: 'localhost',
hmr: {
clientPort: 5173,
host: 'localhost',
protocol: 'ws'
},
port: 5173,
watch: {
usePolling: true
}
}
});