From 3a3cea437bc2b9441b60fe0026e4b6406f04a03e Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 17 Feb 2024 19:03:23 +0000 Subject: [PATCH] Configure Vite --- vite.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 vite.config.js diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 00000000..570afeca --- /dev/null +++ b/vite.config.js @@ -0,0 +1,13 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: [ + 'resources/assets/sass/app.scss', + ], + refresh: true, + }), + ], +});