部署React應用程式到GitHub Pages時所遇到的挑戰
P粉611456309
P粉611456309 2023-08-16 15:59:12
0
1
368


PS C:UsersPanchOneDriveDesktopYourself2> npm run deploy npm ERR! 缺少腳本: "deploy" npm ERR! npm ERR! 若要查看腳本列表,請執行: npm ERR! npm run npm ERR! 可在此執行的完整日誌位於: C:UsersPanchAppDataLocalnpm-cache_logs2023-08-15T16_47_39_705Z-debug-0.log PS C:UsersPanchOneDriveDesktopYourself2>

所有可能的方式

P粉611456309
P粉611456309

全部回覆 (1)
P粉141925181

看起來你沒有在package.json中定義任務(自己檢查一下)。由於你正在使用React,請確保已安裝gh-pagesnpm套件

npm install gh-pages --save-dev

此外,你還需要在package.json檔案的scripts物件下定義任務:

"predeploy": "npm run build", "deploy": "gh-pages -d build",

例如,我的一個github頁面React應用程式有以下內容:

"scripts": { "predeploy": "npm run build", "deploy": "gh-pages -d build", "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" },

依照指示取得更詳細的答案:https://github.com/gitname/react-gh-pages

    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板
    關於我們 免責聲明 Sitemap
    PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!