-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Tatsumi0000/feature/ticket-9
Vuetifyの設定と、axiosを使った通信部分、CORS設定を書いてみる
- Loading branch information
Showing
31 changed files
with
2,543 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Ep0j2SQQjNdbD9mU3fgHvbB5eRSrOIifbVP/1qz/J0336lFz/OL7vjs5Jt66OLbLaq6ywtJFnZvlbmh1NMFeCrqMg6jchXh1lkgJcvGj+Uz6OxNSJ0c1dL9mlgd/SzmXEkz63fw5CUfQVRgZVMo7MLIVvqwPXSrHAxWwlsvn1tSe/f8b2NuODykNOyULd4Eb+SEjrHXyuwaU0+yLG/6Wkh7WiyQ+HidS72z6pXDy8LXZjDmD8Ij6Rcfk3rDFrHQcUKXFY4seqYoFcSne7D5OcfK5AfDfvfADS19vHqooc02+zCFMBbPhB1njshvpEUmQ6e8Nfp9OYoF1rfkE1ISEbHfUEzAIm0qA0vhjrec1PP7JmXZYd3Y3kurSScKqVkhJTfTEubW6dTc4Va3GRdVQX0SHMy3OYOyMpsuU--rHQ3Dvh2vIkzhKdR--i7l+9K+4IibecW4xIAqfig== | ||
BmH7TPjQLwiGCcFeLNTdeUuTz27Fv2bouxrDK8SWS0yiW/xhgPMBmPpd4EPA/yEN5hL5biM/llfatqDGpua8UCFtEm62+7FjBYE0ON51gcw0EBPczkFtMNcMdDDJYuACxMCAFyHBSIvgUOswGpRGtQpqyXCfSiM4anMpr2yQJqyUcMfm0i0AhyIAkE/KtBjVPh7X0Vk2vgZQe/4Mu1JNaw9SetjgXhFnmryQCfUpffZakwmQZ5123ZiB2Vz63FGLDuL5zLHtlpSIy8roDWDS6hngss5SUoLWZKjm0GRD5L+8ZkpHV8gHNEyxIrWxJlY52ZnzowqT0i0LhpI7RjZSbIYUlx4PplwsX3CUapW6UZFpFq8ALdOoqfa42Rgt5+/H8KsDH5Mwml8jfySgGcMbThX0ah5CIj09CuqymAXnYO4bJECtEWmLbxVrXBYpCg7GvJGTZXX2eLEvvAIXDtGISZSeotI9AJIDWgEIxJJfcsfrLEJIkCv//X6s8W3Hn6/yXY+2DQEqvN/pyQeirlfjJdfdFq1SbcUi14pV7hTGL9whni++mX1ayuIl5NqHeIwT1UBHNS28xxWRLJ8bo6GHtNLl4XmCUx+feQ1kERc6eC2giMjFKzPEDKG2G+0xxlzmehUQ6fRX6LIOlPU+SnpZGW88Oox20z2SVgN0iBsfX/J9dGeTwg==--+OnXQEJldTk28UGt--7gRg9i7GtwWFfXvzOOpWfg== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
VITE_API_BASE_URL='http://localhost:3000/v1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2022": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:vue/vue3-essential", | ||
"prettier" | ||
], | ||
"parser": "vue-eslint-parser", | ||
"parserOptions": { | ||
"ecmaVersion": 13, | ||
"parser": "@typescript-eslint/parser", | ||
"sourceType": "module", | ||
"project": [ | ||
"./tsconfig.json" | ||
], | ||
"extraFileExtensions": [ | ||
".vue" | ||
] | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint", | ||
"vue" | ||
], | ||
"rules": { | ||
"semi": [ | ||
"error", | ||
"always" | ||
], | ||
"no-unused-vars": [ | ||
"error", | ||
{ | ||
"args": "all", | ||
"argsIgnorePattern": "^_" | ||
} | ||
], | ||
"quotes": [ | ||
"error", | ||
"double" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.