@x-wave/blog 1.1.4 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -141,7 +141,7 @@ export const blog = createBlogUtils(mdxFiles)
141
141
  ```tsx
142
142
  // src/App.tsx
143
143
  import { BlogProvider, DocumentationRoutes } from '@x-wave/blog'
144
- import { Navigate, Route, HashRouter as Router, Routes } from 'react-router-dom'
144
+ import { Navigate, Route, BrowserRouter as Router, Routes } from 'react-router-dom'
145
145
  import { blog } from './utils'
146
146
  import { NAVIGATION_DATA } from './navigation'
147
147
 
@@ -177,7 +177,7 @@ export default function App() {
177
177
  }
178
178
  ```
179
179
 
180
- > **Router flexibility**: Swap `HashRouter` for `BrowserRouter` to use cleaner URLs without the hash (`/en/welcome` vs `/#/en/welcome`). BrowserRouter requires server configuration to fallback to `index.html` for all routes.
180
+ > **Note**: BrowserRouter requires server configuration to fallback to `index.html` for all routes.
181
181
 
182
182
  ### Using a base path
183
183