mirror of
https://github.com/home-assistant/frontend.git
synced 2026-07-02 12:05:39 +01:00
b6eb4a50d9
Co-authored-by: Bram Kragten <mail@bramkragten.nl>
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
/* global module */
|
|
|
|
module.exports = function litDisableDevModeLoader(source) {
|
|
return source.replace(
|
|
/\b(const|let|var) DEV_MODE = true;/g,
|
|
"$1 DEV_MODE = false;"
|
|
);
|
|
};
|