Next.js + Html
Import html files in Next.js
Installation
npm install --save next-html
or
yarn add next-html
Usage
Create a next.config.js
in your project
const withHtml = require('next-html');
module.exports = withHtml();
Optionally you can add your custom Next.js configuration as parameter
const withHtml = require('next-html');
module.exports = withHtml({
webpack(config, options) {
return config;
}
});
assetPrefix
You can serve remote resources by setting assetPrefix option.
Example usage:
const withHtml = require('next-html');
module.exports = withHtml({
assetPrefix: 'https://static-example.com',
webpack(config, options) {
return config;
}
});