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 771f5c4 commit acaf319Copy full SHA for acaf319
src/cli/commands/start.ts
@@ -27,7 +27,7 @@ export default ({ createContext, annotations: { getMetadata, constants, getFunct
27
const startLocal = async (context) => {
28
let app = express()
29
app.use(bodyParser.json({ limit: '10mb' }))
30
-
+ app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies
31
console.log("")
32
for (let serviceDefinition of context.publishedFunctions) {
33
let httpMetadata = getMetadata(rest.environmentKey, serviceDefinition.service) || []
0 commit comments