react-starter-kit/public/config.js
Mastermindzh 5829588665 Added the possibility to override partial configs during deployments
Added default output to jest (for terminal output...)
Upgraded npm packages. Left jest on 27 because of breaking changes in 28
2022-07-25 10:13:47 +02:00

15 lines
221 B
JavaScript

const defaultConfig = {
version: "0.1.0",
name: "React-starter-kit",
};
// ignore this :)
try {
window.defaultConfig = defaultConfig;
if (module) {
module.exports = defaultConfig;
}
} catch {
// ignore
}