Created
May 13, 2018 00:23
-
-
Save bingomanatee/3313f21ea572d7cae41d28baec1f5945 to your computer and use it in GitHub Desktop.
a react neutrino-rc seed file with a few useful add-ins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
use: [ | |
['@neutrinojs/react', | |
{ | |
host: 'edelbucks.biz', | |
html: { | |
baseHref: '/', | |
headHtmlSnippet: `<style type="text/css">body, html {margin: 0; padding: 0; height: 100%; overflow-x: hidden; overflow-y: auto;}</style>`, | |
title: 'EdelBucks', | |
links: [ | |
'https://fonts.googleapis.com/icon?family=Material+Icons' | |
, "https://fonts.googleapis.com/css?family=Roboto" | |
] | |
}, | |
devServer: { | |
disableHostCheck: true | |
} | |
} | |
], | |
['@neutrinojs/jest', {verbose: false}] | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you find any way to make headHtmlSnippet work in Neutrino 9? :)