2.1.0 • Published 5 years ago

next-routes-now v2.1.0

Weekly downloads
11
License
MIT
Repository
github
Last release
5 years ago

Usage

To install the latest version of Next Routes for Now CLI, run this command:

npm install -g next-routes-now
# or
yarn global add next-routes-now

Or install locally:

npm install next-routes-now
# or
yarn add next-routes-now

Generate routes

generate-now-routes <routes.json> [-A <now.json>]

Usage

Description

Usage
  $ generate-now-routes <routes_file> [options]

Options
  --help, -h          Display this message
  --version, -v       Display version
  --local-config, -A  Path to the local `now.json` file

Routes config json example

Define your Now 2 rules in routes.json. To build your next-routes use the build key to compose your next-routes into your now.json.

[
  {
    "src": "/_next/static/(.*)",
    "dest": "/_next/static/$1",
    "headers": { "cache-control": "s-maxage=86400" },
    "continue": true
  },
  {
    "build": "routes.js"
  }
]

Can also be used programatically

const generate = require("next-routes-now")

genaret.buildAndUpdate(pathToRoutes, pathToNow);

With prefix

If you files are not located at the root of your project, say in a monorepo, you can use the prefix key:

[
  {
    "build": "routes.js",
    "prefix": "/packages/web"
  }
]
2.1.0

5 years ago

2.0.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago