You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vite.config.js 539B

1234567891011121314151617181920
  1. import { defineConfig } from 'vite'
  2. import laravel, { refreshPaths } from 'laravel-vite-plugin'
  3. export default defineConfig({
  4. plugins: [
  5. laravel({
  6. input: [
  7. 'resources/css/app.css',
  8. 'resources/js/app.js',
  9. 'resources/css/filament.css',
  10. ],
  11. refresh: [
  12. ...refreshPaths,
  13. 'app/Http/Livewire/**',
  14. 'app/Forms/Components/**',
  15. 'app/Tables/Columns/**',
  16. ],
  17. }),
  18. ],
  19. })