Skip to content

Commit c6f3375

Browse files
committed
fix: remove appPath
1 parent f0728fa commit c6f3375

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

app/templates/server/common/server.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export default class ExpressServer {
1818
private routes: (app: Application) => void;
1919
constructor() {
2020
const root = path.normalize(__dirname + '/../..');
21-
app.set('appPath', root + 'client');
2221
app.use(bodyParser.json({ limit: process.env.REQUEST_LIMIT || '100kb' }));
2322
app.use(bodyParser.urlencoded({ extended: true, limit: process.env.REQUEST_LIMIT || '100kb' }));
2423
app.use(bodyParser.text({ limit: process.env.REQUEST_LIMIT || '100kb'}));

0 commit comments

Comments
 (0)