#React(hooks)で作ったアプリをGitHubPagesで公開したい
エラー内容(困っていること)
- こちらの記事(ディレクトリ名を変更)のやり方を参考に公開しよとうするとエラーが出る
npm run build
ができない
開発環境
- VScode
- MacBookPro
- M1Pro
- OS:Monterey
出ているエラー
Terminal
1counter-app % npm run build 2 3> counter-app@0.1.0 build 4> react-scripts build && mv build docs 5 6Creating an optimized production build... 7Failed to compile. 8 9Failed to load config "prettier" to extend from. 10Referenced from: /Users/name/counter-app/.eslintrc.json
記述しているコード
eslintrc
1{ 2 "extends": [ 3 "eslint:recommended", 4 "plugin:@typescript-eslint/recommended", 5 "prettier", 6 "prettier/@typescript-eslint" 7 ], 8 "plugins": ["@typescript-eslint"], 9 "parser": "@typescript-eslint/parser", 10 "parserOptions": { 11 "sourceType": "module" 12 }, 13 "env": { "browser": true, "node": true, "es6": true }, 14 "rules": { 15 // 適当なルール 16 } 17}
package
1..., 2"homepage": "https://(user name).github.io/(repository name)/", 3 "scripts": { 4 "start": "react-scripts start", 5 "build": "react-scripts build && mv build docs", 6 "test": "react-scripts test", 7 "eject": "react-scripts eject" 8 }, 9...,
- ※
user name
は自身のgithubの名前にしています - ※
repository name
は自身のリポジトリ名にしています
試したこと
npm run build
ではなくyarn run build
を試したが同じエラーだった- ESLintが原因だと思い、有効だったものを無効にしたりアインストールを試してみた
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー