Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yazumoto/svelte-amplify-test
https://github.com/yazumoto/svelte-amplify-test
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yazumoto/svelte-amplify-test
- Owner: yazumoto
- Created: 2021-05-26T02:57:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-28T09:02:15.000Z (over 3 years ago)
- Last Synced: 2024-11-07T10:50:43.521Z (about 2 months ago)
- Language: JavaScript
- Size: 37.1 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Svelte Amplifyテストレポジトリ
問題解決能力を高めるためのレポジトリです。
```
yarn dev
で起動するようにし、
localhost:5000
でアクセスしたときにConsoleにエラーが出ないようにしてください。
```なお、このレポジトリは、Svelteのテンプレートを落としてきて、それに対してAmplify Authのライブラリを入れただけです。
```
import { Auth } from '@aws-amplify/auth'
```を入れるとエラーになるので、それをどうにかして解決してください。
## 成功条件
- `import { Auth } from '@aws-amplify/auth'` の記載がちゃんと実行される位置にある。(src配下のコードは変更しない)
- yarn devがエラーなく成功する(WarningのみはOK)
- yarn dev後、 http://localhost:5000 にアクセスして、Webページが表示され、DevToolsのコンソールにエラーが出ていない## 注意事項
- Authを別のパッケージからimportするのはNGです。
- importしたAuthがundefinedでないことを確認してください。
- yarn build ではなく、 yarn dev してください。