我使用了几乎最着名的反应样板(在react-create-app之后):
https://github.com/react-boilerplate/react-boilerplate
半年前开始这个项目。试图最近构建它,但是当我在构建后启动index.html
文件时,控制台中会出现错误:
ERR_FILE_NOT_FOUND
- main.js包。
正在搜索如何修复它一段时间,然后找到一个解决方案,在.
/
文件中webpack.base.babel.js
之前添加entry: options.entry,
output: Object.assign({
path: path.resolve(process.cwd(), 'build'),
publicPath: './', // <-------------- here
}, options.output)
:
yarn install
重新打包,错误消失但显示空白页。
控制台中的 无错误。编译动态文件时没有错误,yarn start
之后以及dot
之后没有错误。一切似乎都恰到好处,但仍然出现空白页......
期待任何有关如何处理它的帮助。
重要:我下载了此样板的最新版本并进行了构建。没有./
它没有工作。但是,它适用于procedure TForm2.Button1Click(Sender: TObject);
var
Arr: TArray<integer>;
begin
SetLength(Arr, 5);
Arr[0] := 0;
Arr[1] := 0;
Arr[2] := 3;
Arr[3] := 1;
Arr[4] := 2;
// First sort: Sort 1-n
TArray.Sort<integer>(Arr, TComparer<integer>.Construct(function(const Left, Right: integer): Integer
begin
if Left < Right then
Result := -1
else if Left > Right then
Result := 1
else
Result := 0;
end
));
// Second sort: Put zeros at the end
TArray.Sort<integer>(Arr, TComparer<integer>.Construct(function(const Left, Right: integer): Integer
begin
if (Left = 0) and (right>0) then
Result := 1
else
Result := 0;
end
));
end;
。