File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -28,4 +28,5 @@ yarn-error.log*
28
28
jspm_packages
29
29
30
30
# Serverless directories
31
- .serverless
31
+ .serverless
32
+ .webpack
Original file line number Diff line number Diff line change 142
142
"build" : " node scripts/build.js" ,
143
143
"build:server" : " node scripts/build.server.js" ,
144
144
"start:server:local" : " node ./dist/server.js" ,
145
- "test" : " node scripts/test.js"
145
+ "test" : " node scripts/test.js" ,
146
+ "download:stats" : " curl -o ./build/loadable-stats.json https://static.velog.io/loadable-stats.json"
146
147
},
147
148
"eslintConfig" : {
148
149
"extends" : [
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ const host =
6
6
: process . env . REACT_APP_API_HOST || '/' ;
7
7
const apiClient = axios . create ( {
8
8
baseURL : host ,
9
+ withCredentials : true ,
9
10
} ) ;
10
11
11
12
export default apiClient ;
You can’t perform that action at this time.
0 commit comments