mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
const APP_NAME = 'Boilerplate'
|
|
const DATA_API_KEY = '.data-api'
|
|
|
|
const html = document.documentElement
|
|
const body = document.body
|
|
const isDebug = html.hasAttribute('data-debug')
|
|
|
|
export { APP_NAME, DATA_API_KEY, html, body, isDebug }
|