使用firebase deploy时,我收到以下错误:

Error: HTTP Error: 400, hosting.rewrites[0] is not exactly one from [subschema 0],[subschema 1]

javascript - HTTP错误:400,hosting.rewrites [0]与[subschema 0],[subschema 1]中的值不完全相同-LMLPHP

是什么原因造成的?

我的功能文件index.js

const functions = require('firebase-functions');
const nodemailer = require('nodemailer');

import React from 'react';
import { renderToString } from 'react-dom/server';
import express from 'express';
import fs from 'fs';
import App from './app/containers/App';

const index = fs.readFileSync(__dirname + '/index.html', 'utf8');

const app = express();

app.get('**', (req, res) => {
  const html = renderToString(<App />);
  const finalHtml = index.replace('app', html);
  res.set('Cache-Control', 'public, max-age=600, s-maxage=1200');
  res.send(finalHtml);
});

export const ssrapp = functions.https.onRequest(app);

exports.someCustomFunction1 = functions.database.ref(...).onWrite(...);
exports.someCustomFunction2 = functions.database.ref(...).onWrite(...);


firebase.json

{
  "hosting": {
    "public": "build",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "rewrites": [
      {
        "source": "**",
        "destination": "ssrapp"
      }
    ]
  }
}


谢谢

最佳答案

将URL重写为Cloud Function的配置需要一对sourcefunction。当前,您正在显示一对sourcedestination,因此您可能应该将destination更改为functionPlease see the documentation有关更多详细信息。

07-24 09:38
查看更多