Skip to content

Commit cb08ab3

Browse files
author
yunkui.zhou
committed
调整路由路径
1 parent 1bcc162 commit cb08ab3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const config = require('config');
1111
const app = express();
1212
app.use(helmet());
1313
console.log((config.injectDevelopmentTools && config.injectDevelopmentTools(app)) || `当前环境 ${process.env.NODE_ENV}`);
14+
app.use(main); // 路由入口
1415
const options = {
1516
dotfiles: 'ignore',
1617
etag: true,
@@ -20,7 +21,7 @@ const options = {
2021
redirect: false,
2122
};
2223
app.use(express.static(path.resolve(__dirname, '../public'), options));
23-
app.use('/', main);
24+
2425
/* eslint-disable */
2526
app.use((err, req, res, next) => {
2627
res.json({

0 commit comments

Comments
 (0)