Next.js Static HTML Export, which can be run standalone without the need of a Node.js server.
Features:
- Generate content from markdown
- Linting
- TypeScript
- Automatic generation
sitemap.xml
androbots.txt
/
├── _next
│ └── ...
├── article
│ ├── article-1.html
│ ├── article-2.html
│ └── article-3.html
├── 404.html
├── favicon.ico
├── index.html
├── robots.txt
└── sitemap.xml
Command | Description |
---|---|
yarn dev |
Start the development server on http://localhost:3000/ |
yarn build |
Build the application for production usage |
yarn export |
Export app to static HTML in the out directory |