UNPKG

meme-magic

Version:

An A-Frame, React, Redux front-end with Sessions, Websockets, SQL, and Authentication built into the backend.

17 lines (13 loc) 511 B
'use strict'; import path from 'path'; import logMiddleware from 'volleyball'; const rootPath = path.join(__dirname, '../../'); const indexPath = path.join(rootPath, './browser/app.html'); const faviconPath = path.join(rootPath, './browser/favicon/favicon.ico'); // Configure my built in properties. export default (app) => { app.setValue('projectRoot', rootPath); app.setValue('indexPath', indexPath); app.setValue('faviconPath', faviconPath); app.setValue('log', logMiddleware); };