slorber / gatsby-plugin-react-native-web

react-native-web plugin for Gatsby

Home Page:https://sebastienlorber.com/using-expo-in-gatsby

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing external configuration for type:commonjs2

cjpete opened this issue · comments

Steps to reproduce:

  1. Create new starter site

Instructions taken from here: https://github.com/slorber/gatsby-plugin-react-native-web#manual-setup

gatsby new [project-name]
cd [project-name]
yarn add react-native react-native-web@~0.11.7 gatsby-plugin-react-native-web expo
  1. Update gatsby config:
module.exports = {
  siteMetadata: {
    title: `Gatsby Default Starter`,
    description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
    author: `@gatsbyjs`,
  },
  plugins: [
    `gatsby-plugin-react-helmet`,
    {
      resolve: `gatsby-source-filesystem`,
      options: {
        name: `images`,
        path: `${__dirname}/src/images`,
      },
    },
    `gatsby-transformer-sharp`,
    `gatsby-plugin-sharp`,
    {
      resolve: `gatsby-plugin-manifest`,
      options: {
        name: `gatsby-starter-default`,
        short_name: `starter`,
        start_url: `/`,
        background_color: `#663399`,
        theme_color: `#663399`,
        display: `minimal-ui`,
        icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
      },
    },
    `gatsby-plugin-react-native-web`,
    // this (optional) plugin enables Progressive Web App + Offline functionality
    // To learn more, visit: https://gatsby.dev/offline
    // `gatsby-plugin-offline`,
  ],
}
  1. Launch the site
yarn develop

This also fails with the same error message if using the recipe method in the README:

gatsby new [project-name]
cd [project-name]
gatsby recipes https://raw.githubusercontent.com/slorber/gatsby-plugin-react-native-web/master/recipe.mdx
yarn develop

Can you try to put the plugin first in the list?

Also give more details about the error, like the stacktrace etc?

Getting the same error with expo project:

ERROR #98123 WEBPACK

Generating SSR bundle failed

Missing external configuration for type:commonjs2

error Command failed with exit code 1.

ERROR #98123 WEBPACK
Generating SSR bundle failed
Missing external configuration for type:commonjs2

This error is not thrown if i exclude gatsby-plugin-react-native-web plugin from gatsby-config.js.

expo/examples#196

Same error replicated. Note reverting to "gatsby-plugin-react-native-web": "3.0.0-beta.7", was my solution for now