Skip to content

Commit

Permalink
Merge pull request #2405 from lpsinger/mdx-autolink-noopener-blank
Browse files Browse the repository at this point in the history
Set target=_blank, noopener for automatic links in MDX files
  • Loading branch information
dakota002 authored Jun 25, 2024
2 parents 0586bbb + c98057d commit e6080cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions remix.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export default {
rehypeSlug,
(options) =>
rehypeExternalLinks({
rel: 'external',
target: false,
rel: ['external', 'noopener'],
target: '_blank',
...options,
}),
(options) =>
Expand Down

0 comments on commit e6080cb

Please sign in to comment.