We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4596cc3 commit ef29871Copy full SHA for ef29871
.gitignore
@@ -57,3 +57,5 @@ typings/
57
# dotenv environment variables file
58
.env
59
60
+# ignore build js files
61
+*.js
index.js
@@ -1,3 +1,6 @@
1
-module.exports = (req, res) => {
2
- res.end("Welcome to Micro");
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
3
+const handler = (_, res) => {
4
+ res.end("Welcome to Micro");
5
};
6
+module.exports = handler;
0 commit comments