diff options
author | ryo <ryo@nopwd.lol> | 2025-03-06 13:06:42 +0000 |
---|---|---|
committer | ryo <ryo@nopwd.lol> | 2025-03-06 13:06:42 +0000 |
commit | e1a48c8208c181fd40ecb065878ba9ea49b1f48f (patch) | |
tree | d7a0cafef9d406dd21a694ed60ab6f1ea034335f /vite.config.js |
Initial Commit
Diffstat (limited to 'vite.config.js')
-rw-r--r-- | vite.config.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..29fbfe9 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,13 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; +import tailwindcss from '@tailwindcss/vite'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + tailwindcss(), + ], +}); |