https://github.com/loicmahieu/react-native-web-spinkit
Replacement for react-native-spinkit when targeting the web.
https://github.com/loicmahieu/react-native-web-spinkit
Last synced: 17 days ago
JSON representation
Replacement for react-native-spinkit when targeting the web.
- Host: GitHub
- URL: https://github.com/loicmahieu/react-native-web-spinkit
- Owner: LoicMahieu
- Created: 2019-05-28T08:20:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T22:49:42.000Z (over 2 years ago)
- Last Synced: 2025-03-27T20:46:37.398Z (3 months ago)
- Language: TypeScript
- Size: 200 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-native-spinkit-web
This package is a replacement for [`react-native-spinkit`](https://github.com/maxs15/react-native-spinkit) when targeting the web.
### Targeting the WebAdd the following to your webpack configuration:
``` javascript
module.exports = {
..., /* the existing configuration */resolve: {
alias: {
'react-native-spinkit': 'react-native-spinkit-web'
}
}
};
```