open-nomad/ui/config/targets.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
235 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
2019-03-12 23:42:47 +00:00
'use strict';
2021-12-28 16:08:12 +00:00
const browsers = [
'last 1 Chrome versions',
'last 1 Firefox versions',
'last 1 Safari versions',
];
2019-03-12 23:42:47 +00:00
2017-09-19 14:47:10 +00:00
module.exports = {
2019-03-12 23:42:47 +00:00
browsers,
2017-09-19 14:47:10 +00:00
};