Wedding Invitation
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 288B

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