File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 39
39
with :
40
40
node-version : ' 20'
41
41
cache : yarn
42
- - name : Setup Pages
43
- uses : actions/configure-pages@v4
44
- with :
45
- # Automatically inject basePath in your Next.js configuration file and disable
46
- # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
47
- #
48
- # You may remove this line if you want to manage the configuration yourself.
49
- static_site_generator : next
50
42
- name : Restore cache
51
43
uses : actions/cache@v4
52
44
with :
62
54
run : yarn install
63
55
- name : Lint check
64
56
run : yarn lint
57
+ - name : Format check
58
+ run : yarn format:check
59
+ - name : Setup tmate session
60
+ if : ${{ failure() }}
61
+
62
+ timeout-minutes : 15
63
+ with :
64
+ detached : false
65
+ limit-access-to-actor : true
65
66
- name : Build with Next.js
66
67
run : yarn build
67
68
- name : Upload artifact
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ const path = require('path'); // eslint-disable-line @typescript-eslint/no-var-r
4
4
5
5
const nextConfig = {
6
6
output : 'export' ,
7
+ experimental : {
8
+ images : {
9
+ unoptimized : true ,
10
+ } ,
11
+ } ,
12
+ basePath : '' ,
7
13
reactStrictMode : true ,
8
14
9
15
compiler : {
You can’t perform that action at this time.
0 commit comments