-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstencil.config.ts
43 lines (41 loc) · 896 Bytes
/
stencil.config.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { Config } from '@stencil/core';
// https://stenciljs.com/docs/config
export const config: Config = {
namespace: 'remtehnaladka',
globalStyle: 'src/global/app.css',
globalScript: 'src/global/app.ts',
devServer: {
port: 3000,
openBrowser: false,
},
bundles: [{
components: [
'nice-anim',
'prog-img',
'remteh-advantages',
'remteh-bottom',
'remteh-case',
'remteh-clients',
'remteh-contacts',
'remteh-directions',
'remteh-header',
'remteh-home',
'remteh-main-projects',
'remteh-not-found',
'remteh-projects',
'remteh-root',
'remteh-select',
'remteh-top',
'remteh-what-we-do',
'remteh-why-trust',
'tab-bar',
'tab-slider',
],
}],
outputTargets: [
{
type: 'www',
serviceWorker: null, // disable service workers
},
],
};