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

vite.config.js 312B

1234567891011121314
  1. import { defineConfig } from 'vite';
  2. import laravel from 'laravel-vite-plugin';
  3. export default defineConfig({
  4. plugins: [
  5. laravel({
  6. input: [
  7. 'resources/sass/app.scss',
  8. 'resources/js/app.js',
  9. ],
  10. refresh: true,
  11. }),
  12. ],
  13. });