Created by CyanHall.com
on 11/21/2020
, Last updated: 04/30/2021.
πΒ Β Star me if itβs helpful.
πΒ Β Star me if itβs helpful.
1. Installation
$ npm i -g @nestjs/cli
$ nest new project-name
3. next.config.js
const path = require('path');
module.exports = {
webpack (config) {
// Module import alias
config.resolve.alias['~'] = path.resolve(__dirname, `.`);
return config;
}
}
import Layout from "~/components/layout"
5. Render HTML
<div dangerouslySetInnerHTML={{ __html: postData.contentHtml }} />
2. Lifecycle events
onModuleInit()
onApplicationBootstrap()
onModuleDestroy()
beforeApplicationShutdown()
onApplicationShutdown()
4. Link with className
<Link href="/">
<a className="foo" target="_blank" rel="noopener noreferrer">
Hello World
</a>
</Link>
More