Skip to content

Commit

Permalink
Fixing JS in example
Browse files Browse the repository at this point in the history
  • Loading branch information
weotch authored Jun 25, 2022
1 parent 871b860 commit abaccb9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ In `nuxt.config.js`:
anchorParser: {
addBlankToExternal: true,
internalUrls: [
/^https?:\/\/localhost:\d+/
/^https?:\/\/([\w\-]+\.)?netlify\.com/
/^https?:\/\/(www\.)?bukwild\.com/
]
/^https?:\/\/localhost:\d+/,
/^https?:\/\/([\w\-]+\.)?netlify\.com/,
/^https?:\/\/(www\.)?bukwild\.com/,
],
internalHosts: [
'localhost',
'bukwild.com',
]
],
externalPaths: [
/^\/react-landing-page/
]
/^\/react-landing-page/,
],
sameWindowUrls: [
/^https?:\/\/(shop\.)?bukwild\.com/
/^https?:\/\/(shop\.)?bukwild\.com/,
],
disableSmartLinkRegistration: false,
}
Expand Down

0 comments on commit abaccb9

Please sign in to comment.