Express sending assets with wrong MIME type

前端 未结 3 874
旧巷少年郎
旧巷少年郎 2021-01-16 01:24

Using Express to serve a Vue.js webpack app, I am receiving the following error after deploy: Is my code for serving the app is the issue here?

app.use(helm         


        
3条回答
  •  说谎
    说谎 (楼主)
    2021-01-16 01:50

    For some reason, had to now specify a mount path:

    app.use('/static', express.static(path.resolve(__dirname, '../client/dist/static')));
    

提交回复
热议问题