next-prefixed

0.0.11 • Public • Published

next-prefixed

Prefix next links and images. Useful when serving from basePath.

Codecov code style: prettier CircleCI npm npm

Read More

Installation

yarn add next-prefixed

Usage

next-prefixed exports components for rendering prefixed links and images. It also exports a function to prefix any url.

To set the prefix for the URLs, set the assetPrefix in your next.config.js.

const debug = process.env.NODE_ENV !== 'production';
const assetPrefix = debug ? '' : '/your_prefix/';
 
module.exports = withPlugins([withCSS, withMDX, withBlog], {
  assetPrefix,
  publicRuntimeConfig: {
    assetPrefix
  }
});

prefixURL

import { prefixURL } from 'next-prefixed';
 
prefixURL('/blog'); // => my_prefix/blog

Image

Passes all props to HTML img tag.

import { Image } from 'next-prefixed';
 
const Example = () => <Image src="pony.png" alt="Valiant Horse" />;

Link

Passes all props to next.js Link component.

import { Link } from 'next-prefixed';
 
const Example = () => <Link to="/blog" />;

Readme

Keywords

none

Package Sidebar

Install

npm i next-prefixed

Weekly Downloads

5

Version

0.0.11

License

none

Unpacked Size

15.8 kB

Total Files

8

Last publish

Collaborators

  • alisowski