私はpub build
が、PWA労働者はAngularDart
Running pub build:pub.exe build
-----
Unhandled exception:
ProcessException: The system cannot find the file specified.
Command: pub.exe build
#0 _buildProjectIfEmptyOrOld (http://localhost:52940/pwa.dart:116)
<asynchronous suspension>
#1 main (http://localhost:52940/pwa.dart:40)
<asynchronous suspension>
#2 _startIsolate.<anonymous closure> (dart:isolate-
patch/isolate_patch.dart:263)
#3 _RawReceivePortImpl._handleMessage (dart:isolate-
patch/isolate_patch.dart:151)
main.dart
import 'package:angular/angular.dart';
import 'package:my_app/views/app_component/app_component.dart';
import 'package:pwa/client.dart' as pwa;
void main() {
bootstrap(AppComponent);
// register PWA ServiceWorker for offline caching.
new pwa.Client();
}
pubspec.yaml
dependencies:
pwa: ^0.1.2
'pwa.dart'ファイルはどこにありますか? https://github.com/isoos/pwa/tree/master/examplesの例を確認しましたか? –
記事によると、私はそれを行う方法を知ろうとしていました。リンク:http://news.dartlang.org/2017/03/making-dart-web-app-offline-capable-3.html –
依存関係を追加すると自動的に必要なファイルが生成されますが、手動で追加した後でも、同じエラーがスローされます。 –