1

我想将 NextJS 与 firebase 云功能一起使用,我正在创建一个云功能:

import * as functions from 'firebase-functions';
import cors from 'cors';
import express from 'express';
import next from 'next';

const nextApp = next({ dev: false });
const handle = nextApp.getRequestHandler();

nextApp
  .prepare()
  .then(() => {
    const server = express();
    server.use(cors({ origin: true }));

    server.get('/a', (req, res) => {
      return nextApp.render(req, res, '/b', req.query);
    });

    server.get('/b', (req, res) => {
      return nextApp.render(req, res, '/a', req.query);
    });

    server.get('*', (req, res) => {
      return handle(req, res);
    });
  })
  .catch(ex => {
    console.error(ex.stack);
    process.exit(1);
  });

export let app = functions.https.onRequest(nextApp);

NextJS 使用我的 JS 应用程序的构建创建一个文件夹。

问题是我无法在云端上传 NextJS 构建文件夹。如何包含此文件夹?

GitHub问题=> https://github.com/zeit/next.js/issues/2017

4

2 回答 2

4

我必须运行firebase deployfunctions目录而不是root. 这是我的回购 => https://github.com/sarovin/next-firebase-functions

于 2017-07-19T16:14:29.667 回答
2

Firebase 当前忽略在 Cloud Functions 中上传隐藏文件。已合并PR以解决此问题,但我相信此时仍未发布。

完成此排序后,您会发现在 Cloud Functions 上托管 Next.js 会遇到许多其他问题。例如,JS 包存储在/_next/路由中,除非您使用正确的 Firebase 托管重写规则,否则无法访问。

我写了一篇博文,涵盖了我在让 Next.js 在 Cloud Functions 上工作时发现的所有问题和注意事项。

于 2017-07-25T16:20:39.377 回答