Skip to content

Instantly share code, notes, and snippets.

@hesselbom
Created May 16, 2019 09:43
Show Gist options
  • Save hesselbom/4a3dc03acae33c14a3bc2530f6d6b821 to your computer and use it in GitHub Desktop.
Save hesselbom/4a3dc03acae33c14a3bc2530f6d6b821 to your computer and use it in GitHub Desktop.
Issue with preact build
import './style'
import Home from './routes/Home'
export default () => <Home />
{
"scripts": {
"build": "preact build"
},
"dependencies": {
"preact-cli": "3.0.0-rc.1",
"preact-render-to-string": "5.0.3",
"preact": "10.0.0-beta.1"
}
}
.home { font-size: 20px }
import s from './Home.css'
export default () => <h1 class={s.home}>Home</h1>
html { background: blue }
@hesselbom
Copy link
Author

routes__Home.css = routes/Home.css
routes__Home.js = routes/Home.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment