/home/techb158/dev.balacoffee.com/vendor/laravel/ui/src/Presets
Edit: /home/techb158/dev.balacoffee.com/vendor/laravel/ui/src/Presets/React.php (1733B)
'^7.13.13',
'react' => '^17.0.2',
'react-dom' => '^17.0.2',
] + 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'));
}
}