Laravelプロジェクト作成時についてくるBootstrapとVueを削除する

166日目

こちらを参考に laravel-news.com

# テスト用にプロジェクト作成
$ composer create-project --prefer-dist laravel/laravel test_proj
$ cd test_proj/

# とりあえず作成時のファイルをコミット
$ git init
$ git add .
$ git commit .

# BootstrapとVueを削除
$ php artisan preset none
Frontend scaffolding removed successfully.

# 削除後の状態
$ git status
On branch master
Changes not staged for commit:
  (use "git add/rm <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   package.json
        deleted:    public/css/app.css
        deleted:    public/js/app.js
        modified:   resources/js/app.js
        modified:   resources/js/bootstrap.js
        deleted:    resources/js/components/ExampleComponent.vue
        deleted:    resources/sass/_variables.scss
        modified:   resources/sass/app.scss
        modified:   webpack.mix.js

no changes added to commit (use "git add" and/or "git commit -a")