Open Virous77 opened 9 months ago
Not going to work with VITE.
Not going to work with VITE.
The problem was same with CRA too so I tried multiple version of Redux and Kepler at last i was able to run with these dependency.
{
"name": "example",
"version": "0.1.0",
"private": true,
"dependencies": {
"assert": "^2.1.0",
"kepler.gl": "^2.5.5",
"querystring": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-palm": "^3.3.8",
"react-redux": "^7.2.0",
"react-scripts": "^5.0.1",
"react-table": "^7.8.0",
"redux": "^4.2.1",
"url": "^0.11.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
}
The only problem is right now i have to force install all dependency.
Describe the bug
I tried to setup kepler.gl locally in my project an defined, I followed the path and installed the dependencies but got the error related to
module.exports = require('./dist/reducers')
when i started the development server.To Reproduce Steps to reproduce the behavior:
All we have to setup new
VITE
project with above dependencies and setup store and start the project.store.js
Desktop (please complete the following information):
I tried in my linux system too but issue is same there.