Update routes.dart

This commit is contained in:
Tobe O 2017-02-12 15:20:56 -05:00 committed by GitHub
parent ccd0c62ddc
commit 127a66e63b

View file

@ -14,8 +14,10 @@ configureRoutes(Angel app) async {
} }
configureAfter(Angel app) async { configureAfter(Angel app) async {
// Static server, and pub serve while in development // Uncomment this to proxy over pub serve while in development:
await app.configure(new PubServeLayer()); // await app.configure(new PubServeLayer());
// Static server at /web or /build/web, depending on if in production
await app.configure(new VirtualDirectory()); await app.configure(new VirtualDirectory());
// Set our application up to handle different errors. // Set our application up to handle different errors.