Skip to content

Commit 960424c

Browse files
chore: format
Signed-off-by: David Dal Busco <[email protected]>
1 parent 89ecb1e commit 960424c

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414

1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: '20.x'
18-
registry-url: 'https://registry.npmjs.org'
17+
node-version: "20.x"
18+
registry-url: "https://registry.npmjs.org"
1919

2020
- name: Install Dependencies
2121
run: npm ci

docs/miscellaneous/github_actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353

5454
- uses: actions/setup-node@v3
5555
with:
56-
node-version: '20.x'
57-
registry-url: 'https://registry.npmjs.org'
56+
node-version: "20.x"
57+
registry-url: "https://registry.npmjs.org"
5858

5959
- name: Install Dependencies
6060
run: npm ci

docs/miscellaneous/plugins.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,22 @@ npm i @junobuild/nextjs-plugin -D
3535
### Usage
3636

3737
```javascript title="next.config.mjs"
38-
import {withJuno} from '@junobuild/nextjs-plugin';
38+
import { withJuno } from "@junobuild/nextjs-plugin";
3939

4040
export default withJuno();
4141
```
4242

4343
The plugin sets the build output to `export` by default. You can override the option or provide additional options as follows:
4444

4545
```javascript title="next.config.mjs"
46-
import {withJuno} from '@junobuild/nextjs-plugin';
46+
import { withJuno } from "@junobuild/nextjs-plugin";
4747

4848
/** @type {import('next').NextConfig} */
4949
const nextConfig = {
50-
output: 'export'
50+
output: "export"
5151
};
5252

53-
export default withJuno({nextConfig});
53+
export default withJuno({ nextConfig });
5454
```
5555

5656
### Local development

0 commit comments

Comments
 (0)