-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is domDependencyConfig.json #90
Comments
Experienced this too, are there any hacks or solutions yet? |
I did |
That really not fix the issue, because react-native-dom still depends on native-module to be ported to the web.
|
Isn't the list of "native modules" in |
Haven't got the chance to look into the issue but in short: yes import { RNDomInstance } from "react-native-dom";
import { name as appName } from "../app.json";
// Path to RN Bundle Entrypoint ================================================
const rnBundlePath = "./entry.bundle?platform=dom&dev=true";
// React Native DOM Runtime Options =============================================
const ReactNativeDomOptions = {
enableHotReload: false,
nativeModules: []
};
// App Initialization ============================================================
const app = new RNDomInstance(
rnBundlePath,
appName,
document.body,
ReactNativeDomOptions
);
app.start(); Haven't try to do |
I want to use
react-native-vector-icon
.Tried install, Got the following error.
What is
domDependencyConfig.json
...?The text was updated successfully, but these errors were encountered: