aboutsummaryrefslogtreecommitdiff
path: root/apps/extension/src/util.ts
blob: d2ea35d32678720e6de7f027c0f2493c033bb8e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const getEnv = () => {
  // chrome.management.getSelf((self) => {
  //     if (self.installType === 'development') {
  //         return "development"
  //     }
  //     else {
  //         return "production"
  //     }
  // })

  // return null
  return "production";
};