scaffold laravel 12 backend
composer create-project laravel/laravel + artisan install:api. sanctum removed (custom session-cookie auth per ai/backend-context). personal_access_tokens migration + config/sanctum.php deleted. default .gitignore excludes vendor/, .env, etc - composer install recreates vendor at setup time.
This commit is contained in:
parent
5425df0eae
commit
c03ffc8941
57 changed files with 10758 additions and 0 deletions
1
backend/resources/js/app.js
Normal file
1
backend/resources/js/app.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
import './bootstrap';
|
||||
4
backend/resources/js/bootstrap.js
vendored
Normal file
4
backend/resources/js/bootstrap.js
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
import axios from 'axios';
|
||||
window.axios = axios;
|
||||
|
||||
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
Loading…
Add table
Add a link
Reference in a new issue