modified: resources/views/components/simple-home.blade.php

modified:   vite.config.js
This commit is contained in:
2026-02-12 14:58:44 +03:30
parent 6c7855cb7d
commit 46168a2cc5
3 changed files with 36 additions and 33 deletions

View File

@@ -3,16 +3,23 @@ import laravel from 'laravel-vite-plugin';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
tailwindcss(),
],
server: {
watch: {
ignored: ['**/storage/framework/views/**'],
},
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
tailwindcss(),
],
server: {
host: '192.168.1.21',
port: 5173,
strictPort: true,
cors: true,
watch: {
ignored: ['**/storage/framework/views/**'],
},
hmr: {
host: '192.168.1.21',
}
},
});