Skip to content

Commit 4addb9c

Browse files
guides/issue 187 AWS Adapter docs and home page logo (#199)
1 parent 34cf9e7 commit 4addb9c

5 files changed

Lines changed: 155 additions & 19 deletions

File tree

src/assets/aws.svg

Lines changed: 6 additions & 0 deletions
Loading

src/components/run-anywhere/platforms.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
"icon": "nodejs",
1515
"link": "/guides/hosting/#self-hosting"
1616
},
17+
{
18+
"label": "AWS",
19+
"icon": "aws",
20+
"link": "/guides/hosting/aws/"
21+
},
1722
{
1823
"label": "GitHub",
1924
"icon": "github",

src/components/run-anywhere/run-anywhere.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import platforms from "./platforms.json" with { type: "json" };
2+
import awsLogo from "../../assets/aws.svg?type=raw";
23
import githubLogo from "../../assets/github.svg?type=raw";
34
import netlifyLogo from "../../assets/netlify.svg?type=raw";
45
import nodejsLogo from "../../assets/nodejs.svg?type=raw";
56
import vercelLogo from "../../assets/vercel.svg?type=raw";
67
import styles from "./run-anywhere.module.css";
78

89
const platformImageMapper = {
10+
aws: awsLogo,
911
github: githubLogo,
1012
netlify: netlifyLogo,
1113
nodejs: nodejsLogo,

src/pages/docs/plugins/index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tocHeading: 2
1414

1515
- [Lit SSR](/docs/plugins/lit-ssr/) - For Lit users, a custom renderer plugin to support Lit+SSR
1616
- [PostCSS](/docs/plugins/postcss/) - Leverage PostCSS plugins, like [Tailwind](/guides/ecosystem/tailwind/)
17-
- [CSS Modules](/docs/plugins/css-modules/) - Support for [CSS Modules](https://github.com/css-modules/css-modules) ™️ syntax
17+
- [CSS Modules](/docs/plugins/css-modules/) - Support for [CSS Modules](https://github.com/css-modules/css-modules) syntax
1818
- [Raw Loader](/docs/plugins/raw/) - Import arbitrary text files as ESM
1919

2020
## All Plugins
@@ -24,7 +24,8 @@ Below is the official list of supported first-party plugins available by the Gre
2424
<br>
2525

2626
| Name | Description |
27-
| --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | --- |
27+
| --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
28+
| [AWS](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-adapter-aws) | Deploy SSR pages and API routes to serverless functions on [**AWS**](https://aws.amazon.com/). |
2829
| [Babel](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-babel) | Use [**Babel**](https://babeljs.io/) plugins, presets, and configuration in your project. |
2930
| [HTML Include](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-include-html) | Inspired by the original [HTML Imports spec](https://www.html5rocks.com/en/tutorials/webcomponents/imports/). |
3031
| [Import Raw](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-import-raw) | Enables usage of ESM syntax for loading arbitrary file contents as a string. |
@@ -33,5 +34,5 @@ Below is the official list of supported first-party plugins available by the Gre
3334
| [Netlify](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-adapter-netlify) | Deploy serverless and edge functions to [**Netlify**](https://www.netlify.com/). |
3435
| [Polyfills](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-polyfills) | Web Component related polyfills for older browsers. |
3536
| [PostCSS](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-postcss) | Allows usage of [**PostCSS**](https://postcss.org/) plugins and configuration in your project. |
36-
| [Puppeteer](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-renderer-puppeteer) | A rendering plugin to support prerendering a Greenwood project using Puppeteer. | |
37+
| [Puppeteer](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-renderer-puppeteer) | A rendering plugin to support prerendering a Greenwood project using Puppeteer. |
3738
| [Vercel](https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-adapter-vercel) | Deploy serverless and edge functions with [**Vercel**](https://vercel.com/). |

0 commit comments

Comments
 (0)