我一直在尝试在Firebase托管站点上重写Firebase。不管我尝试什么都行不通。现在,我将所有重写都路由到名为app的路由功能中。 如您所见>> >>
{
"public": "public/dist-main",
"target": "public-store-easy",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/**",
"function": "app"
}
]
},
这是我的路由功能>>
const functions = require('firebase-functions');
const express = require('express');
const path = require('path');
const html = require('html')
const app = express();
app.use(express.static('/../public/'));
app.get('/', (req, res) => {
res.sendFile('/dist-main/index.html', { root: '../public' })
})
app.get('/login', (req, res) => {
res.sendFile('/dist-main/login.html', { root: '../public' })
})
app.get('/HOME', (req, res) => {
res.sendFile('/dist-main/home.html', { root: '../public' })
})
app.get('/feedback', (req, res) => {
res.sendFile('/dist-main/feedback-form.html', { root: '../public' })
})
exports.app = functions.https.onRequest(app);
我希望它能正常工作,因为它在我的本地主机服务器和Firebase服务服务器上也能正常工作。
谢谢!
答案 0 :(得分:0)
部署后的Cloud Functions仅有权访问functions
目录内的文件。您正在尝试从../public
发送文件,而该文件未部署功能。
如果您希望这样做,则需要将public
目录移到functions
目录中,并适当地更新{"hosting": {"public": ""}}
键。