massive improvements to tests, streamlined and synced migrations, fixed a lot of wrong or old table field references. implemented a lot of pages in react for website frontend
This commit is contained in:
26
vittte.config.js
Normal file
26
vittte.config.js
Normal file
@@ -0,0 +1,26 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import laravel from 'laravel-vite-plugin';
|
||||
import { wayfinder } from '@laravel/vite-plugin-wayfinder';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
react(),
|
||||
laravel({
|
||||
input: [
|
||||
'resources/css/app.css',
|
||||
'resources/js/app.tsx',
|
||||
'resources/js/guest/main.tsx',
|
||||
'resources/js/admin/main.tsx',
|
||||
],
|
||||
refresh: true,
|
||||
}),
|
||||
wayfinder(),
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': './resources/js',
|
||||
},
|
||||
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user