-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluid.ts
27 lines (27 loc) · 889 Bytes
/
fluid.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export const fluidEnvironments = {
dev: {
label: 'Development',
esm: 'https://fluid-dev.lmig.com/fluid/build/fluid.esm.js',
legacy: 'https://fluid-dev.lmig.com/fluid/build/fluid.js',
},
test: {
label: 'Test',
esm: 'https://fluid-test.lmig.com/fluid/build/fluid.esm.js',
legacy: 'https://fluid-test.lmig.com/fluid/build/fluid.js',
},
prod: {
label: 'Production',
esm: 'https://fluid.lmig.com/fluid/build/fluid.esm.js',
legacy: 'https://fluid.lmig.com/fluid/build/fluid.js',
},
local: {
label: 'Local',
esm: 'http://localhost:3333/build/my-first-stencil-project.esm.js',
legacy: 'http://localhost:3333/build/my-first-stencil-project.js',
},
external: {
label: 'External',
esm: 'https://fluid.libertymutual.com/fluid/build/fluid.esm.js',
legacy: 'https://fluid.libertymutual.com/fluid/build/fluid.esm.js',
},
};