Update all non-major dependencies
[ProtonMail-WebClient.git] / applications / pass-desktop / webpack.plugins.js
blobc3537b9acd8f82dcc0743e3ee3ce9280fa17da0f
1 const { DefinePlugin } = require('webpack');
2 const { platform } = require('os');
4 module.exports = [
5 new DefinePlugin({
6 BUILD_TARGET: JSON.stringify(platform()),
7 DESKTOP_BUILD: true,
8 ENV: JSON.stringify(process.env.NODE_ENV ?? 'development'),
9 EXTENSION_BUILD: false,
10 OFFLINE_SUPPORTED: true,
11 }),