We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4406a0 commit bda8becCopy full SHA for bda8bec
generators/app/index.js
@@ -72,6 +72,11 @@ module.exports = class extends Generator {
72
this.destinationPath(),
73
this.props,
74
);
75
+
76
+ this.fs.copy(
77
+ this.destinationPath('.env.example'),
78
+ this.destinationPath('.env'),
79
+ );
80
}
81
82
install() {
generators/app/templates/src/components/index.ts
@@ -9,7 +9,7 @@ interface RouteOptions {
9
10
const path = '/';
11
12
-const routes = (_: RouteOptions) => {
+const routes = (_: RouteOptions): Router => {
13
const router = Router();
14
15
// TODO: register components to router
0 commit comments