Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jokull/is-agencies
Community maintained list of Icelandic digital agencies
https://github.com/jokull/is-agencies
Last synced: 13 days ago
JSON representation
Community maintained list of Icelandic digital agencies
- Host: GitHub
- URL: https://github.com/jokull/is-agencies
- Owner: jokull
- Created: 2021-01-18T16:30:27.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-05T15:35:43.000Z (about 3 years ago)
- Last Synced: 2024-12-17T03:58:30.500Z (15 days ago)
- Language: JavaScript
- Homepage: https://www.agencies.is
- Size: 788 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Big List of Icelandic Web Agencies
This project uses Sapper to build a single static page that
prefetches data from Contentful.🌎 [agencies.is](https://www.agencies.is/)
## Workflow
Install packages and run the dev server
```bash
yarn install
yarn run dev
```Deploy to GitHub Pages
```bash
yarn run deploy
```## Troubleshoot
You will probably encounter an error referenced
[here](https://github.com/snowpackjs/snowpack/discussions/1387#discussioncomment-117946)
that looks something like this:`Client build fails: 'platform' is not exported by node-resolve:empty.js`
To fix update `node_modules/contentful-sdk-core/dist/index.es-modules.js` like this:
Line 3:
```diff
- import { platform, release } from 'os';
+ import os from 'os';
```