reintroduce polyfill
parent
e5f466e0ea
commit
8c30b2ea1d
|
|
@ -1,3 +1,4 @@
|
|||
import './polyfills.js';
|
||||
import type * as configTypes from '../types/configTypes';
|
||||
export declare function getProperty(propertyName: 'application.applicationName'): string;
|
||||
export declare function getProperty(propertyName: 'application.logoURL'): string;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import './polyfills.js';
|
||||
import { config } from '../data/config.js';
|
||||
const configFallbackValues = new Map();
|
||||
configFallbackValues.set('application.applicationName', 'Lot Occupancy System');
|
||||
|
|
|
|||
|
|
@ -1,13 +1,11 @@
|
|||
/* eslint-disable @typescript-eslint/indent, node/no-unpublished-import */
|
||||
|
||||
// import { applyPolyfills } from './polyfills.js'
|
||||
import './polyfills.js'
|
||||
|
||||
import { config } from '../data/config.js'
|
||||
|
||||
import type * as configTypes from '../types/configTypes'
|
||||
|
||||
// applyPolyfills()
|
||||
|
||||
/*
|
||||
* SET UP FALLBACK VALUES
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue