File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
4040export default withJuno ();
4141```
4242
4343The 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} */
4949const nextConfig = {
50- output: ' export'
50+ output: " export"
5151};
5252
53- export default withJuno ({nextConfig});
53+ export default withJuno ({ nextConfig });
5454```
5555
5656### Local development
You can’t perform that action at this time.
0 commit comments