create management panel project

This commit is contained in:
2024-08-22 10:17:08 +08:00
parent 9074dd77f6
commit d74cac51c7
56 changed files with 10862 additions and 0 deletions

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,
}),
],
});