From 172fd7c9dcc74bf8523f5638e08bea7d592af43b Mon Sep 17 00:00:00 2001 From: Rachelle Gray Date: Tue, 30 May 2017 14:53:34 -0700 Subject: [PATCH] Issue 54 of the upstream repo - readme: - Update link that points to Webpack's configuration docs to Webpack > Concepts > Config - Fixes dead ending on the deprecated Webpack v1 docs - https://github.com/JeffreyWay/laravel-elixir-webpack-official/issues/54 --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 938dfb6..63bb638 100644 --- a/readme.md +++ b/readme.md @@ -29,7 +29,7 @@ elixir(function(mix) { This will compile `app/assets/js/app.js` to `public/dist/app.js`. -If you'd like to leverage more of Webpack's functionality, Elixir will read any `webpack.config.js` file in your project root, and [factor its configuration](https://webpack.github.io/docs/configuration.html) into the build process. Alternatively, you may pass your Webpack-specific configuration as the fourth argument to `mix.webpack()`. +If you'd like to leverage more of Webpack's functionality, Elixir will read any `webpack.config.js` file in your project root, and [factor its configuration](https://webpack.js.org/concepts/configuration) into the build process. Alternatively, you may pass your Webpack-specific configuration as the fourth argument to `mix.webpack()`. ## Step 3: Plugins