Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amodinho/umqombothi-hello-world-ssr
An SSR example of Umqombothi
https://github.com/amodinho/umqombothi-hello-world-ssr
Last synced: 21 days ago
JSON representation
An SSR example of Umqombothi
- Host: GitHub
- URL: https://github.com/amodinho/umqombothi-hello-world-ssr
- Owner: AmoDinho
- Created: 2019-08-27T09:41:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T08:17:30.000Z (about 2 years ago)
- Last Synced: 2024-11-04T09:25:53.827Z (2 months ago)
- Language: JavaScript
- Homepage: https://codesandbox.io/s/github/AmoDinho/umqombothi-hello-world-ssr
- Size: 2.2 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello World For Umqombothi
This repo serves as a poc for using Pimp My Book's [Umqombothi-component-library](https://github.com/pimp-my-book/umqombothi-component-library) with Next.JS
Key thing to note is that in your `next.config.js`, you've got to export the `next-transpile-modules` with Umqombothi to allow Next to read the CSS and JSX.
EXAMPLE:
```
const withTM = require("next-transpile-modules");
const withCSS = require("@zeit/next-css");module.exports = withCSS(
withTM({
transpileModules: ["umqombothi-component-library"]
})
);```