strudel
Version:
A front-end framework for back-end powered web.
21 lines (19 loc) • 488 B
JavaScript
const initializedClassName = 'strudel-init';
export default {
/**
* Class added on components when initialised
*/
initializedClassName,
/**
* Selector for components that have been initialized
*/
initializedSelector: `.${initializedClassName}`,
/**
* Whether to enable devtools
*/
devtools: process.env.NODE_ENV !== 'production',
/**
* Whether to show production mode tip message on boot
*/
productionTip: process.env.NODE_ENV !== 'production'
};