当我将我的素材资源从cd $PSScriptRoot
$DevWebRootPath=$PSScriptRoot+"\MyWebApp\bin\Debug\netcoreapp2.0"
$WebAssembly="MyWebApp.dll"
cd $DevWebRootPath
$processInfo = New-Object System.Diagnostics.ProcessStartInfo("dotnet.exe", $WebAssembly)
$process = [System.Diagnostics.Process]::Start($processInfo)
Invoke-RestMethod http://localhost:5000/api/codegen -Method POST -InFile "$($PSScriptRoot)\MyWebApp\Payload.json" -ContentType "application/json"
$process.CloseMainWindow()
cd $PSScriptRoot
升级到material-ui
时,会出现此消息。
错误发生在文件@material-ui/core
我认为这与我如何使用IconButtons有关。从我使用node_modules/material-ui/SvgIcon/SvgIcon.js:91
和material-ui
的IconButton混合之前,我现在从@material-ui/icons
有没有人知道如何处理这个错误?