9

I am trying to run Next.js on firebase functions, and have successfully deployed before. However, after adding a webpack plugin (svgr) and making further customisations I am running into an error whilst building. It is occurring after a successful compile when Next.js is automatically optimizing pages.

The dependencies for both my functions folder and my dev folder are the exact same, except the functions folder has two extras (for firebase).

Upon inspection, it seems to think I have multiple React instances. Running the app in dev mode out of my /app folder works fine, however, running the app out of the /functions folder in dev mode still does not work.

Error occurred prerendering page "/": Error: Minified React error #321; visit https://reactjs.org/docs/error-decoder.html?invariant=321 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.

Error occurred prerendering page "/404.html": Error: Minified React error #321; visit https://reactjs.org/docs/error-decoder.html?invariant=321 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.

next.config.js

module.exports = {
    distDir: "../functions/next",
    webpack(config) {
        config.module.rules.push({
            test: /\.svg$/,
            use: ['@svgr/webpack'],
        });
        return config;
    },
    externals: {
        react: {
            root: 'React',
            commonjs2: 'react',
            commonjs: 'react',
            amd: 'react'
        },
        'react-dom': {
            root: 'ReactDOM',
            commonjs2: 'react-dom',
            commonjs: 'react-dom',
            amd: 'react-dom'
        }
    },

};

directory layout

app/package.json

  "dependencies": {
    "@material-ui/core": "^4.7.0",
    "@material-ui/icons": "^4.5.1",
    "@svgr/webpack": "^4.3.3",
    "clsx": "^1.0.4",
    "next": "^9.1.4",
    "prop-types": "^15.7.2",
    "react": "^16.12.0",
    "react-dom": "^16.12.0"
  },

functions/package.json

  "engines": {
    "node": "8"
  },
  "dependencies": {
    "firebase-admin": "^8.0.0",
    "firebase-functions": "^3.1.0",
    "@material-ui/core": "^4.7.0",
    "@material-ui/icons": "^4.5.1",
    "clsx": "^1.0.4",
    "next": "^9.1.4",
    "prop-types": "^15.7.2",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "@svgr/webpack": "^4.3.3"
  },
  "devDependencies": {
    "firebase-functions-test": "^0.1.6"
  },
1
  • it seems reasonable to get rid of ^ in dependencies to make sure it does not get updated with the next build or goes out of sync. Commented Dec 3, 2019 at 13:17

1 Answer 1

0

Let's leave distDir as is, say to .next instead of ../functions/.next. In a way, You can copy build artifact right after the build using cp .next ../functions/.next. You also need to change dev value to true when you call next({ dev: true, ...otherOptions }) or set NODE_ENV=production to run firebase serve.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.