See also:
| Service | Type | RAM | Storage | Limitations |
|---|---|---|---|---|
| 👉 Adaptable | PaaS | 256 MB | Non-persistent? (1 GB database storage available) | |
| AWS EC2 | IaaS | 1 GB |
See also:
| Service | Type | Storage | Limitations |
|---|---|---|---|
| Amazon DynamoDB | 25 GB | ||
| Amazon RDS | |||
| Azure SQL Database | MS SQL Server | ||
| 👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
| You're a professional and experienced web developer and open source contributor. Create a first release README document for these files. The target audience is professional developers with five years of experience building online projects. | |
| - Include a description | |
| - A list of interesting techniques the code uses in the files provided. When possible link to MDN documentation as part of the text of the technique. | |
| - A list of non-obvious technologies or libraries used in the code that would be of interest to professional developers with medium level experience. | |
| - Make sure you add links to external libraries, including links to any specific fonts used. | |
| - A breakdown of the project structure as a directory list code block: Include directories like any images directories or subfolders implied by the code, but not individual files unless they're in the root directory. Add a short description of any interesting directories underneath the code block | |
| - If you mention a file or directory in the description, link to the |
| import { AnchorHTMLAttributes } from 'react' | |
| import NextLink from 'next/link' | |
| import type { LinkProps as NextLinkProps } from 'next/link' | |
| type LinkProps = NextLinkProps & AnchorHTMLAttributes<HTMLAnchorElement> | |
| export const Link = (props: LinkProps) => { | |
| return <NextLink prefetch={false} {...props} /> | |
| } |