From bd3dc75bffb1c79b8cb76c52dfc4ff843e55f4b5 Mon Sep 17 00:00:00 2001 From: Richard Dern Date: Sun, 21 Apr 2024 23:57:11 +0200 Subject: [PATCH] Added the REVENGE css for testing purposes --- vite.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vite.config.js b/vite.config.js index bbc878f..1118e45 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,7 +4,10 @@ import laravel from 'laravel-vite-plugin'; export default defineConfig({ plugins: [ laravel({ - input: ['resources/css/app.css'], + input: [ + 'resources/css/app.css', + 'resources/css/REVENGE.css' + ], refresh: true, }), ],