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 f0728fa commit c6f3375Copy full SHA for c6f3375
app/templates/server/common/server.ts
@@ -18,7 +18,6 @@ export default class ExpressServer {
18
private routes: (app: Application) => void;
19
constructor() {
20
const root = path.normalize(__dirname + '/../..');
21
- app.set('appPath', root + 'client');
22
app.use(bodyParser.json({ limit: process.env.REQUEST_LIMIT || '100kb' }));
23
app.use(bodyParser.urlencoded({ extended: true, limit: process.env.REQUEST_LIMIT || '100kb' }));
24
app.use(bodyParser.text({ limit: process.env.REQUEST_LIMIT || '100kb'}));
0 commit comments