angular/devtools/shell-dev-webpack.config.js

11 lines
208 B
JavaScript

const webpack = require('webpack');
module.exports = {
plugins: [
new webpack.DefinePlugin({
'process.env': {
LATEST_SHA: JSON.stringify(process.env.LATEST_SHA),
},
}),
],
};