支付宝记账本
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.

13 lines
331 B

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