Initial commit of laravel files.

This commit is contained in:
Krzysztof Płaczek
2022-08-05 11:37:12 +02:00
parent b74795c3a2
commit 3a6a2252a3
82 changed files with 11222 additions and 24 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,
}),
],
});