https://github.com/amodinho/umqombothi-hello-world-ssr
An SSR example of Umqombothi
https://github.com/amodinho/umqombothi-hello-world-ssr
Last synced: 3 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T08:17:30.000Z (over 2 years ago)
- Last Synced: 2025-02-13T23:44:58.566Z (5 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"]
})
);```