init commit

This commit is contained in:
David Melendez
2026-01-14 22:35:27 +01:00
parent 21aeac9212
commit 4e0c415f0b
7 changed files with 9890 additions and 0 deletions

28
vite.config.js Normal file
View File

@@ -0,0 +1,28 @@
/**
* Vite Configuration
* Professional Resume Builder - Laravel Application
*
* @author David Valera Melendez <david@valera-melendez.de>
* @created 2025-08-08
* @location Made in Germany 🇩🇪
*/
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
input: [
'resources/sass/app.scss',
'resources/js/app.js'
],
refresh: true,
}),
],
resolve: {
alias: {
'~bootstrap': 'bootstrap',
}
},
});