Coder Social home page Coder Social logo

next-prefixed's Introduction

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" />;

next-prefixed's People

Contributors

hipstersmoothie avatar jesstelford avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

next-prefixed's Issues

Support 'serverless' target

According to the docs, next/config is not supported for target: 'serverless' builds.

The alternative they propose is to use the env build-time config option.

This would mean the way next-prefixed reads the assetPrefix would change to process.env.assetPrefix for this config:

{
  "env": {
    "assetPrefix": "/foo",
  }
}

I'm pretty sure that the process.env.assetPrefix is replaced with the actual value during next's webpack build, so it should work seamlessly for all build targets (on both client + server). But this feels wrong in some way that I can't quite explain.

@hipstersmoothie Thoughts on making this change?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.