File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
governance/xc_admin/packages/xc_admin_frontend Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const nextConfig = {
5
5
reactStrictMode : true ,
6
6
output : process . env . BUILD_STANDALONE === 'true' ? 'standalone' : undefined ,
7
7
webpack ( config , { isServer } ) {
8
- config . experiments = { asyncWebAssembly : true }
8
+ config . experiments = { asyncWebAssembly : true , layers : true }
9
9
config . resolve . fallback = { fs : false }
10
10
const fileLoaderRule = config . module . rules . find (
11
11
( rule ) => rule . test && rule . test ?. test ?. ( '.svg' )
Original file line number Diff line number Diff line change 11
11
"start:dev" : " next dev --port 3004" ,
12
12
"start:prod" : " next start --port 3004" ,
13
13
"fix:format" : " prettier --write ." ,
14
+ "fix:lint" : " next lint --fix --max-warnings 0" ,
14
15
"test:format" : " prettier --check ." ,
15
- "test:lint" : " next lint --max-warnings 0"
16
+ "test:lint" : " next lint --max-warnings 0" ,
17
+ "test:types" : " tsc"
16
18
},
17
19
"dependencies" : {
18
20
"@coral-xyz/anchor" : " ^0.29.0" ,
You can’t perform that action at this time.
0 commit comments