Skip to content

Commit ce62296

Browse files
[9.x] Don't need to ignore vite config file (laravel#5953)
* Don't need to ignore vite config file * Apply fixes from StyleCI Co-authored-by: StyleCI Bot <[email protected]>
1 parent 52863d9 commit ce62296

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.styleci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,5 @@ php:
55
finder:
66
not-name:
77
- index.php
8-
js:
9-
finder:
10-
not-name:
11-
- vite.config.js
8+
js: true
129
css: true

vite.config.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ import laravel from 'laravel-vite-plugin';
44
export default defineConfig({
55
plugins: [
66
laravel({
7-
input: [
8-
'resources/css/app.css',
9-
'resources/js/app.js',
10-
],
7+
input: ['resources/css/app.css', 'resources/js/app.js'],
118
refresh: true,
129
}),
1310
],

0 commit comments

Comments
 (0)