diff --git a/docs/blog/2020-04-10-zf3-webpack.md b/docs/blog/2020-04-10-zf3-webpack.md index d200c36..5abdaa4 100644 --- a/docs/blog/2020-04-10-zf3-webpack.md +++ b/docs/blog/2020-04-10-zf3-webpack.md @@ -3,7 +3,7 @@ title: Zend Framework and Webpack integration authors: ericr --- If you are using ZF3 MVC and want to also use Webpack to bundle and manage -dependencies in your frontend Javascript, I wrote a [guide](/docs/zend-webpack-guide-getting-started) that +dependencies in your frontend Javascript, I wrote a [guide](/docs/guides/laminas-webpack-guide-getting-started) that explains how to use the [`zend-webpack`](https://github.com/visto9259/zend-webpack) ZF3 module and [`php-webpack-plugin`](https://github.com/visto9259/php-webpack-plugin) Webpack plugin to integrate and automate the bundling of frontend JS scripts in a ZF3 Mvc application. diff --git a/docs/blog/2020-07-10-laminas-webpack.md b/docs/blog/2020-07-10-laminas-webpack.md index 0146412..40ce3cb 100644 --- a/docs/blog/2020-07-10-laminas-webpack.md +++ b/docs/blog/2020-07-10-laminas-webpack.md @@ -3,8 +3,8 @@ title: Laminas Framework and Webpack integration authors: ericr --- If you are using Laminas MVC and want to also use Webpack to bundle and manage -dependencies in your frontend Javascript, I wrote a [guide](/docs/zend-webpack-guide-getting-started) that -explains how to use the [`zend-webpack`](https://github.com/visto9259/zend-webpack) Laminas module and [`php-webpack-plugin`](https://github.com/visto9259/php-webpack-plugin) +dependencies in your frontend Javascript, I wrote a [guide](/docs/guides/laminas-webpack-guide-getting-started) that +explains how to use the [`laminas-webpack`](https://github.com/visto9259/laminas-webpack) Laminas module and [`php-webpack-plugin`](https://github.com/visto9259/php-webpack-plugin) Webpack plugin to integrate and automate the bundling of frontend JS scripts in a Laminas Mvc application. This is a replacement for `zend-webpack` which is now abandoned. diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index f9087ba..8c66883 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -20,6 +20,7 @@ const config = { // If you aren't using GitHub pages, you don't need these. organizationName: 'visto9259', // Usually your GitHub org/user name. projectName: 'laminas-webpack', // Usually your repo name. + trailingSlash: false, onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'warn', @@ -97,11 +98,11 @@ const config = { }, { label: 'Getting started', - to: '/docs/category/getting-started', + to: '/docs/getting-started/installation', }, { label: 'Integrating Laminas MVC with Webpack', - to: 'category/integrating-laminas-mvc-with-webpack', + to: '/docs/guides/laminas-webpack-guide-getting-started', } ], },