Removed bootstrap.js

This commit is contained in:
Luis Alvarez
2021-02-24 21:58:39 -05:00
parent 4c156422a6
commit 764e0db322
2 changed files with 0 additions and 20 deletions

View File

@@ -1,11 +0,0 @@
module.exports = ({ features }) => {
let output = {
env: {},
}
if (!!Object.keys(features).length) {
Object.keys(features).map(
(r) => (output.env[`COMMERCE_${r.toUpperCase()}_ENABLED`] = features[r])
)
}
return output
}