summaryrefslogtreecommitdiff
path: root/electron/service/utils/resolveClientEnv.js
blob: 4a4505a65ae3c15792ee269bf0acaaf485d616b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict'
const prefixRE = /^VUE_APP_/

module.exports = function resolveClientEnv(options, raw) {
  process.env.PUBLIC_PATH = options.publicPath

  if (raw) {
    return env
  }

}