Skip to content

Commit

Permalink
fix: fix how dev 404 route is loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
ephys committed Apr 15, 2020
1 parent d8ed1aa commit 1457794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/common/router/create-routes.js
Expand Up @@ -53,7 +53,7 @@ export default function createRoutes() {
path: '*',
priority: Number.MIN_SAFE_INTEGER,
status: 404,
component: require('./dev-404.js'),
component: require('./dev-404.js').default,
});
}

Expand Down

0 comments on commit 1457794

Please sign in to comment.