1
0
forked from poc/pds

initial commit

This commit is contained in:
IOT Dev
2025-03-19 16:07:21 +05:30
commit b5435afd5d
58 changed files with 10282 additions and 0 deletions

11
vite.config.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
],
});