您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

vite.config.js 514B

12345678910111213141516171819
  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/js/app.js',
  8. 'resources/css/filament/company/theme.css',
  9. 'resources/css/filament/user/theme.css',
  10. ],
  11. refresh: [
  12. ...refreshPaths,
  13. 'app/Livewire/**',
  14. 'app/Filament/**',
  15. ],
  16. }),
  17. ],
  18. });