Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 27 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T22:49:42.000Z (almost 2 years ago)
- Last Synced: 2024-04-11T13:05:56.700Z (9 months ago)
- Language: TypeScript
- Size: 200 KB
- Stars: 2
- Watchers: 3
- 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'
}
}
};
```