Skip to content

Commit

Permalink
add pages/index to see if that helps next.js pick up routes
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Jun 11, 2024
1 parent da44403 commit d2d9f9d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ module.exports = {
globals: {
HAS_PASSWORD: true
},
ignorePatterns: ['pages/api/*']
ignorePatterns: ['pages/*', 'pages/api/*']
};
3 changes: 3 additions & 0 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function index() {
return <div />;
}
2 changes: 1 addition & 1 deletion src/components.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

// This file is auto-generated. Do not modify this file directly.
// This file is auto-generated. Do not modify this file directly.
exports['add-role-fact'] = require('./add-role-fact/add-role-fact.js');
exports['app-component'] = require('./app-component/app-component.js');
exports['async-button'] = require('./async-button/async-button.js');
Expand Down

0 comments on commit d2d9f9d

Please sign in to comment.