neno
v0.0.14
Published
Tiny universal web app framework
Downloads
3
Maintainers
Readme
next + inferno = ne • no = neno
🚧 WORK IN PROGRESS 🚧
Tiny wrapper around next
that configures Inferno in place of React during production.
Simply install neno
alongside next
:
yarn add neno next
Then replace next
with neno
in your package scripts:
{
"scripts": {
"dev": "neno",
"build": "neno build",
"start": "neno start"
},
"dependencies": {
"neno": "latest",
"next": "latest"
}
}
That's all there is to it!
Customizing Babel
Define a .babelrc
file and extend from the neno/babel
preset:
{
"presets": [
"neno/babel"
]
}