Edgio

Next.js

This guide shows you how to deploy a Next.js application to Edgio.

Example

Next.js Commerce

For details on using the Next.js Commerce template with Edgio, refer to our Next.js Commerce Guide.

Supported Versions

Edgio supports Next.js version 9 through 12.

Supported Features

Edgio supports all of the most powerful features of Next.js, including:
  • SSG
  • SSR
  • ISG
  • ISR
  • Localization
  • Image Optimization
  • getStaticPaths (including fallback: (true|false|'blocking'))
  • getStaticProps (including revalidate)
  • getServerSideProps
  • getInitialProps

Prerequisites

Setup requires:

Install the Edgio CLI

If you have not already done so, install the Edgio CLI.
Bash
1npm i -g @layer0/cli@latest
When installing the Edgio CLI globally in a virtual environment that has Node and NPM installed globally, you may run into permission issues. In that case, you can install the Edgio CLI locally within your app using npm i -D @layer0/cli and running commands using ./node_modules/@layer0/cli instead of 0.
If you run into permission issues while attempting to install the Edgio CLI globally on your local development machine, these may be fixed by using nvm to manage Node and NPM.

Getting Started

Create a Next.js Application

If you don’t already have a Next.js application, you can create one using:
Bash
1npx create-next-app@^12
Edgio currently supports up to Next.js 12. Next.js 13+ is not supported at this time.

Initializing your Project

Initialize your project for use with Edgio by running the following command in your project’s root directory:
Bash
1cd my-next-app
20 init
This will automatically add all of the required dependencies and files to your project. These include:
  • The @layer0/core package - Allows you to declare routes and deploy your application to Edgio.
  • The @layer0/next package - Provides router middleware that automatically adds Next.js pages and api routes to the Edgio router.
  • The @layer0/prefetch package - Allows you to configure a service worker to prefetch and cache pages to improve browsing speed.
  • The @layer0/react package - Provides a Prefetch component for prefetching pages.
  • layer0.config.js
  • routes.js - A default routes file that sends all requests to Next.js. Update this file to add caching or proxy some URLs to a different origin.
  • sw/service-worker.js A service worker implemented using Workbox.

Next.js Config Plugins

If your project does not have a next.config.js file, one will automatically be added when you run 0 init. Doing so adds two plugins:
  • withLayer0 (required)
  • withServiceWorker (optional)
If your project already has this config file, you need to add these plugins yourself.
JavaScript
1const { withLayer0, withServiceWorker } = require('@layer0/next/config')
2
3module.exports = withLayer0(
4 withServiceWorker({
5 // Output source maps so that stack traces have original source filenames and line numbers when tailing
6 // the logs in the Edgio developer console.
7 layer0SourceMaps: true,
8 })
9)

withLayer0

The withLayer0 plugin optimizes the Next.js build for running on Edgio. It is required to deploy your application on Edgio and accepts the following parameters:
  • layer0SourceMaps: Defaults to false. Set to true to add server-side source maps so that stack traces have original source filenames and line numbers when tailing the logs in the Edgio developer console. This will increase the serverless bundle size but will not affect performance. If you find that your app exceeds the maximum serverless bundle size allowed by Edgio, you can disable this option to conserve space.
We noticed some performance issues related to sourcemaps being loaded in our Serverless infrastructure, which may result in 539 project timeout errors. In case you encounter such errors, please try again with sourcemaps disabled. This document will be updated once the problem is fully resolved.

withServiceWorker

The withServiceWorker plugin builds a service worker from sw/service-worker.js that prefetches and caches all static JS assets and enables Edgio’s prefetching functionality.

Edgio Devtools

By default, Devtools are enabled on production builds of Next.js with Edgio. To disable devtools in production, add the disableLayer0DevTools flag:
JavaScript
1const { withLayer0, withServiceWorker } = require('@layer0/next/config')
2
3module.exports = withLayer0(
4 withServiceWorker({
5 // Output source maps so that stack traces have original source filenames and line numbers when tailing
6 // the logs in the Edgio developer console.
7 layer0SourceMaps: true,
8 // Don't include Edgio Devtools in production
9 // More on Edgio Devtools at https://docs.layer0.co/guides/devtools
10 disableLayer0DevTools: true,
11 })
12)

Running Locally

Test your app with the Sites on your local machine by running the following command in your project’s root directory:
Bash
10 dev

Deploying

Deploy your app to the Sites by running the following command in your project’s root directory:
Bash
10 deploy
See deploying for more information.

Prefetching

The 0 init command adds a service worker based on Workbox at sw/service-worker.js. If you have an existing service worker that uses workbox, you can copy its contents into sw/service-worker.js and simply add the following to your service worker:
JavaScript
1import {Prefetcher} from '@layer0/prefetch/sw';
2
3new Prefetcher().route();

Adding the Edgio Service Worker

To add the Edgio service worker to your app, call the install function from @layer0/prefetch/window in a useEffect hook when the app first loads. For example, you can alter the pages/_app.js in your Next.js app as follows:
JavaScript
1// pages/_app.js
2import {useEffect} from 'react';
3import {install} from '@layer0/prefetch/window';
4
5const MyApp = ({Component, pageProps}) => {
6 useEffect(() => {
7 if (process.env.NODE_ENV === 'production') {
8 install();
9 }
10 }, []);
11};
The code above allows you to prefetch pages from Edgio’s edge cache to greatly improve browsing speed. To prefetch a page, add the Prefetch component from @layer0/react to any Next.js Link element. The example below shows you how to prefetch JSON data from getServerSideProps or getStaticProps using the createNextDataUrl function from @layer0/next/client.
JavaScript
1import {Prefetch} from '@layer0/react';
2import Link from 'next/link';
3import {useRouter} from 'next/router';
4import {createNextDataURL} from '@layer0/next/client';
5
6export default function ProductListing({products}) {
7 const {locale} = useRouter(); // you can omit this if you're not using localization
8
9 return (
10 <ul>
11 {products.map((product, i) => (
12 <li key={i}>
13 <Link href={product.url} passHref>
14 <Prefetch
15 url={createNextDataURL({
16 href: product.url,
17 locale, // you can omit this if you're not using localization
18 routeParams: {
19 // keys must match the param names in your next page routes
20 // So for example if your product page is /products/[productId].js:
21 productId: product.id,
22 },
23 })}>
24 <a>
25 <img src={product.thumbnail} />
26 </a>
27 </Prefetch>
28 </Link>
29 </li>
30 ))}
31 </ul>
32 );
33}
34
35export async function getServerSideProps({params: {id}}) {
36 const products = await fetch(/* fetch from your api */).then((res) =>
37 res.json()
38 );
39
40 return {
41 props: {
42 products,
43 },
44 };
45}
The Prefetch component fetches data for the linked page from Edgio’s edge cache and adds it to the service worker’s cache when the link becomes visible in the viewport. When the user taps on the link, the page transition will be instantaneous because the browser won’t need to fetch data from the network.

Routing

Edgio supports Next.js’s built-in routing scheme for both page and API routes, including Next.js 9’s clean dynamic routes. The default routes.js file created by 0 init sends all requests to Next.js via a fallback route:
JavaScript
1// routes.js
2import { Router } from '@layer0/core/router';
3import { nextRoutes } from '@layer0/next';
4
5export default new Router()
6 // Prevent search engine bot(s) from indexing
7 // Read more on: https://docs.layer0.co/guides/cookbook#blocking-search-engine-crawlers
8 .noIndexPermalink()
9 .get('/service-worker.js', ({cache, serveStatic}) => {
10 cache({
11 edge: {
12 maxAgeSeconds: 60 * 60 * 24 * 365,
13 },
14 browser: {
15 maxAgeSeconds: 0,
16 },
17 });
18 serveStatic('.next/static/service-worker.js');
19 })
20 .use(nextRoutes);

nextRoutes

In the code above, nextRoutes adds all Next.js routes to the router based on the /pages directory. You can add additional routes before and after nextRoutes. For example, you can choose to send some URLs to an alternate backend. This is useful for gradually replacing an existing site with a new Next.js app.
A popular use case is to fallback to a legacy site for any route that your Next.js app isn’t configured to handle:
JavaScript
1// routes.js
2import { Router } from '@layer0/core/router';
3import { nextRoutes } from '@layer0/next';
4
5export default new Router()
6 .use(nextRoutes)
7 .fallback(({proxy}) => proxy('legacy'));
To configure the legacy backend, use layer0.config.js:
JavaScript
1module.exports = {
2 backends: {
3 legacy: {
4 domainOrIp: process.env.LEGACY_BACKEND_DOMAIN || 'legacy.my-site.com',
5 hostHeader:
6 process.env.LEGACY_BACKEND_HOST_HEADER || 'legacy.my-site.com',
7 },
8 },
9};
Using environment variables here allows you to configure different legacy domains for each Edgio environment.

rewrites and redirects

The nextRoutes plugin automatically adds routes for rewrites and redirects specified in next.config.js. Redirects are served directly from the network edge to maximize performance.

Caching

The easiest way to add edge caching to your Next.js app is to add caching routes before nextRoutes. For example, imagine you have /pages/p/[productId].js. Here’s how you can SSR responses as well as cache calls to getServerSideProps:
JavaScript
1new Router()
2 // Prevent search engine bot(s) from indexing
3 // Read more on: https://docs.layer0.co/guides/cookbook#blocking-search-engine-crawlers
4 .noIndexPermalink()
5 // Products - SSR
6 .get('/p/:productId', ({cache}) => {
7 cache({
8 browser: {
9 maxAgeSeconds: 0,
10 },
11 edge: {
12 maxAgeSeconds: 60 * 60 * 24,
13 staleWhileRevalidateSeconds: 60 * 60,
14 },
15 });
16 })
17 // Products - getServerSideProps
18 .get('/_next/data/:version/p/:productId.json', ({cache}) => {
19 cache({
20 browser: {
21 maxAgeSeconds: 0,
22 serviceWorkerSeconds: 60 * 60 * 24,
23 },
24 edge: {
25 maxAgeSeconds: 60 * 60 * 24,
26 staleWhileRevalidateSeconds: 60 * 60,
27 },
28 });
29 })
30 .use(nextRoutes);

Preventing Next.js pages from being cached by other CDNs

By default, Next.js adds a cache-control: private, no-cache, no-store, must-revalidate header to all responses from getServerSideProps. The presence of private would prevent Edgio from caching the response, so nextRoutes from @layer0/next automatically removes the private portion of the header to enable caching at the edge. If you want your responses to be private, you need to specify a cache-control header using the router:
JavaScript
1new Router().get('/my-private-page', ({setResponseHeader}) => {
2 setResponseHeader(
3 'cache-control',
4 'private, no-cache, no-store, must-revalidate'
5 );
6});
Doing so will prevent other CDNs running in front of Edgio from caching the response.

Using next-i18next

The next-i18next package is a popular solution for adding localization to Next.js apps. It has some issues when running in serverless deployments, but you can work around these:
First, you need to not use the default name for the next-i18next.config.js file. We recommend renaming it i18next.config.js. When you use the default name, next-i18next will try to load the config when the serverless function starts and since it is not bundled with the app, it will fail.
Then, you need to explicitly provide the config to appWithTranslation and serverSideTranslations.
So in your pages/_app.js:
JavaScript
1export default appWithTranslation(MyApp, require('../i18next.config')); // <~ need to explicitly pass the config here
and in your pages:
JavaScript
1export async function getStaticProps({locale}) {
2 return {
3 props: {
4 ...(await serverSideTranslations(
5 locale,
6 ['common', 'footer'],
7 require('../i18next.config')
8 )), // <~ need to explicitly pass the config here.
9 // Will be passed to the page component as props
10 },
11 };
12}
Make sure you also import the config correctly with the new name into your next.config.js:
JavaScript
1const { withLayer0, withServiceWorker } = require('@layer0/next/config')
2const { i18n } = require('./i18next.config')
3
4module.exports = withLayer0(
5 withServiceWorker({
6 // Output source maps so that stack traces have original source filenames and line numbers when tailing
7 // the logs in the Edgio developer console.
8 layer0SourceMaps: true,
9 i18n,
10 }),
11)
Finally, you will need to update your layer0.config.js to includeFiles where the locale files are stored. Example using the default of /public:
JavaScript
1module.exports = {
2 connector: '@layer0/next',
3 includeFiles: {
4 public: true,
5 },
6};
A working example app can be found here.

Serverless Bundling

Next.js has continued to improve how it bundles production builds for deployment on serverless architectures. Edgio takes advantage of these improvementsby applying different configuration options depending on the version of Next.js being used:
VersionNext.js configs applied
Next.js < 12.2.0target: 'experimental-serverless-trace'
Next.js >= 12.2.0output: 'standalone'
For backwards compatibility, Edgio will also respect target: 'serverless' in your next.config.js for Next.js versions prior to 12.0.0.
Note that NextRouter.render404 and renderNextPage are retired when using Next.js 12.2.0+. Requests are delegated to a Next.js server instance which will handle determining which page to render based on the request. Prior use cases should now be achieved via using Next.js redirects and rewrites.

Support for Next.js Middleware (BETA)

Edgio supports Next.js middleware starting with Next.js 12.2.0.
When using Next.js middleware it should be noted that the middleware functions are only executed at the serverless layer, after the edge cache. Middleware that you want to execute on each request needs to have caching disabled explicitly for the route on which the middleware is enabled. Some Middleware use cases such as rewriting the request to another route would be fine to cache. These use cases need to be evaluated on a per route basis with caching enabled/disabled based on the desired result.