/home/techb158/ileadtechnology.com/vendor/laravel/ui/src/Presets
NameSizeModeActions
bootstrap-stubs/-0755rm
react-stubs/-0755rm
vue-stubs/-0755rm
Bootstrap.php17080644editdlrm
Preset.php16310644editdlrm
React.php17310644editdlrm
Vue.php18740644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/laravel/ui/src/Presets/React.php (1731B)
'^7.0.0', 'react' => '^16.2.0', 'react-dom' => '^16.2.0', ] + Arr::except($packages, ['vue', 'vue-template-compiler']); } /** * Update the Webpack configuration. * * @return void */ protected static function updateWebpackConfiguration() { copy(__DIR__.'/react-stubs/webpack.mix.js', base_path('webpack.mix.js')); } /** * Update the example component. * * @return void */ protected static function updateComponent() { (new Filesystem)->delete( resource_path('js/components/ExampleComponent.vue') ); copy( __DIR__.'/react-stubs/Example.js', resource_path('js/components/Example.js') ); } /** * Update the bootstrapping files. * * @return void */ protected static function updateBootstrapping() { copy(__DIR__.'/react-stubs/app.js', resource_path('js/app.js')); } }