Skip to content

Commit

Permalink
[9.x] Don't need to ignore vite config file (laravel#5953)
Browse files Browse the repository at this point in the history
* Don't need to ignore vite config file

* Apply fixes from StyleCI

Co-authored-by: StyleCI Bot <bot@styleci.io>
  • Loading branch information
GrahamCampbell and StyleCIBot authored Jul 26, 2022
1 parent 52863d9 commit ce62296
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,5 @@ php:
finder:
not-name:
- index.php
js:
finder:
not-name:
- vite.config.js
js: true
css: true
5 changes: 1 addition & 4 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
],
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
],
Expand Down

0 comments on commit ce62296

Please sign in to comment.