Skip to content

Commit

Permalink
chore: Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanpaudel93 committed Dec 20, 2023
1 parent 96abf02 commit b7666c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ If `pl-pages` fails, you may find that you need to manually clean up the cache d
## Build And Deployment Guide
> Recommended: Use HashRouter for apps deploying using PL Pages to Arweave.
> **Recommended:** Use HashRouter for apps deploying using PL Pages to Arweave.
Please follow this guide for different frameworks and libraries to reference the built assets correctly in the final compiled HTML.
Expand Down Expand Up @@ -456,8 +456,8 @@ Add the configuration to `next.config.js` and build the project to get an `out`
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: 'export',
assetPrefix: "./",
output: 'export'
// other configuration
}
module.exports = nextConfig
Expand All @@ -482,6 +482,7 @@ Modify `nuxt.config.js` to include the following config and build your Nuxt proj
export default defineNuxtConfig({
router: { options: { hashMode: true } },
app: { baseURL: "./" }
// other configuration
})
```
Expand All @@ -491,9 +492,8 @@ Set a `"base"` property in its `vite.config.js` with `./`.
```js
export default defineConfig({
// other configuration
base: "./"
// ...
// other configuration
})

```
Expand Down

0 comments on commit b7666c1

Please sign in to comment.