From 612d1cdfce6fe1e481b3ce09863141a28f9a826e Mon Sep 17 00:00:00 2001 From: Antoine M Date: Thu, 4 Apr 2024 22:10:10 +0200 Subject: [PATCH] Update RecipeFileTree.php --- ux.symfony.com/src/Model/RecipeFileTree.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ux.symfony.com/src/Model/RecipeFileTree.php b/ux.symfony.com/src/Model/RecipeFileTree.php index 7944b44925..c94e109c60 100644 --- a/ux.symfony.com/src/Model/RecipeFileTree.php +++ b/ux.symfony.com/src/Model/RecipeFileTree.php @@ -26,8 +26,8 @@ public function __construct() ->addFile('assets/controllers/hello_controller.js', 'An example controller. Add it to any element with data-controller="hello"') ->addDirectory('assets/styles') ->addFile('assets/styles/app.css', 'Your main CSS file') - ->addFile('package.json', 'Holds your node dependencies, most importantly Stimulus & Webpack Encore.') - ->addFile('webpack.config.js', 'Configuration file for Webpack Encore: the tool that processes and combines all of your CSS and JS files.') + ->addFile('package.json', 'Holds your node dependencies, most importantly Stimulus (when using Webpack Encore).') + ->addFile('webpack.config.js', 'Configuration file for Webpack Encore: the tool that processes and combines all of your CSS and JS files (not needed with AssetMapper).') ; }