29 lines
631 B
Dart
29 lines
631 B
Dart
|
// GENERATED FILE, DO NOT MODIFY
|
||
|
// Generated with jaspr_builder
|
||
|
|
||
|
import 'package:jaspr/jaspr.dart';
|
||
|
import 'package:hsrw_campus_website/pages/home.dart' as prefix0;
|
||
|
|
||
|
/// Default [JasprOptions] for use with your jaspr project.
|
||
|
///
|
||
|
/// Use this to initialize jaspr **before** calling [runApp].
|
||
|
///
|
||
|
/// Example:
|
||
|
/// ```dart
|
||
|
/// import 'jaspr_options.dart';
|
||
|
///
|
||
|
/// void main() {
|
||
|
/// Jaspr.initializeApp(
|
||
|
/// options: defaultJasprOptions,
|
||
|
/// );
|
||
|
///
|
||
|
/// runApp(...);
|
||
|
/// }
|
||
|
/// ```
|
||
|
final defaultJasprOptions = JasprOptions(
|
||
|
clients: {
|
||
|
prefix0.Home: ClientTarget<prefix0.Home>('pages/home'),
|
||
|
},
|
||
|
styles: () => [],
|
||
|
);
|