I'm developming simple React application which uses firebase admin.
I have generated react application by using create react app.
Then I have installed firebase-admin
by using this npm command:
npm install firebase-admin --save
In my index.js
I have added this import:
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import registerServiceWorker from './registerServiceWorker';
import * as admin from 'firebase-admin'
ReactDOM.render(<App />, document.getElementById('root'));
registerServiceWorker();
When I launch with npm start
command and open my page I get this error:
Module not found: Can't resolve 'dns' in 'D:pathomyproject
ode_modulesfirebase-admin
ode_modulesisemaillib'
Why this is happening? Did I miss something?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…