Skip to content

Instantly share code, notes, and snippets.

View WesTyler's full-sized avatar
:octocat:
.

Wes Tyler WesTyler

:octocat:
.
  • 18:13 (UTC -07:00)
View GitHub Profile
{
register: {
plugins: [
'myPlugin',
{ plugin: 'plugin2', once: true, options: { apiHost: 'example.com' } },
{ plugin: require('finalPlugin'), routes: { prefix: '/test/' } }
]
}
}
const manifest = {
server: {
cache: 'redis'
},
connections: [
{
port: 8000,
labels: ['web']
},
{
const webManifest = {
server: {
cache: 'redis',
port: 8000
},
register: {
plugins: [
'./ui-user',
{ plugin: './assets', options: { uglify: true } },
{ plugin: require('./awesome-plugin'), options: { whyNot: true } }