From 8ad644b04a4d6ef95c227e0b5b7380e98aec6faa Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Mon, 1 Apr 2019 18:14:49 +0100 Subject: [PATCH] webpack - update comments in default recipe for new features --- .../1.0/config/packages/webpack_encore.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/symfony/webpack-encore-bundle/1.0/config/packages/webpack_encore.yaml b/symfony/webpack-encore-bundle/1.0/config/packages/webpack_encore.yaml index c1c19d37..33f21122 100644 --- a/symfony/webpack-encore-bundle/1.0/config/packages/webpack_encore.yaml +++ b/symfony/webpack-encore-bundle/1.0/config/packages/webpack_encore.yaml @@ -2,3 +2,12 @@ webpack_encore: # The path where Encore is building the assets. # This should match Encore.setOutputPath() in webpack.config.js. output_path: '%kernel.project_dir%/public/build' + # If multiple builds are defined (as shown below), you can disable the default build: + # output_path: false # output_path: false + + # if using Encore.enableIntegrityHashes() specify the crossorigin attribute value (default: anonymous) + # crossorigin: 'use-credentials' + + # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes) + # Available in version 1.2 + #cache: '%kernel.debug%'