From 2f8dd31c6a749fa83852cadb6311c580405837f8 Mon Sep 17 00:00:00 2001 From: thomashii Date: Sat, 17 Jul 2021 13:07:46 +0800 Subject: [PATCH] Update reference --- lib/src/routes/routes.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/src/routes/routes.dart b/lib/src/routes/routes.dart index b428f4e..6b233f1 100644 --- a/lib/src/routes/routes.dart +++ b/lib/src/routes/routes.dart @@ -7,8 +7,8 @@ import 'controllers/controllers.dart' as controllers; /// Put your app routes here! /// /// See the wiki for information about routing, requests, and responses: -/// * https://github.com/angel-dart/angel/wiki/Basic-Routing -/// * https://github.com/angel-dart/angel/wiki/Requests-&-Responses +/// * https://angel3-docs.dukefirehawk.com/guides/basic-routing +/// * https://angel3-docs.dukefirehawk.com/guides/requests-and-responses AngelConfigurer configureServer(FileSystem fileSystem) { return (Angel app) async { // Typically, you want to mount controllers first, after any global middleware. @@ -25,7 +25,7 @@ AngelConfigurer configureServer(FileSystem fileSystem) { // // Read the following two sources for documentation: // * https://medium.com/the-angel-framework/serving-static-files-with-the-angel-framework-2ddc7a2b84ae - // * https://github.com/angel-dart/static + // * https://pub.dev/packages/angel3_static if (!app.environment.isProduction) { var vDir = VirtualDirectory( app, @@ -41,7 +41,7 @@ AngelConfigurer configureServer(FileSystem fileSystem) { // Set our application up to handle different errors. // // Read the following for documentation: - // * https://github.com/angel-dart/angel/wiki/Error-Handling + // * https://angel3-docs.dukefirehawk.com/guides/error-handling var oldErrorHandler = app.errorHandler; app.errorHandler = (e, req, res) async {