mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
const webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
LATEST_SHA: JSON.stringify(process.env.LATEST_SHA),
|
|
},
|
|
}),
|
|
],
|
|
};
|