-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnativescript.webpack.js
71 lines (66 loc) · 1.61 KB
/
nativescript.webpack.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const { VueLoaderPlugin } = require('vue-loader');
const dominativeElements = [
'AbsoluteLayout',
'ActionBar',
'ActionItem',
'ActivityIndicator',
'Button',
'ContentView',
'DatePicker',
'DockLayout',
'FlexboxLayout',
'FormattedString',
'Frame',
'GridLayout',
'HtmlView',
'Image',
'Label',
'ListPicker',
'ListView',
'NavigationButton',
'Page',
'Placeholder',
'Progress',
'ProxyViewContainer',
'RootLayout',
'ScrollView',
'SearchBar',
'SegmentedBar',
'SegmentedBarItem',
'Slider',
'Span',
'StackLayout',
'Switch',
'TabView',
'TabViewItem',
'TextField',
'TextView',
'TimePicker',
'WebView',
'WrapLayout',
'Prop',
'Template',
];
// DOC: https://docs.nativescript.org/webpack.html#plugin-api
module.exports = webpack => {
webpack.chainWebpack((config, env) => {
config.resolve.alias.set('@vue/runtime-dom', '@vue/runtime-dom');
config.resolve.alias.set('vue', '@vue/runtime-dom');
config.plugin('VueLoaderPlugin').use(VueLoaderPlugin);
config.module
.rule('vue')
.test(/\.vue$/)
.use('vue-loader')
.loader(require.resolve('vue-loader'))
.tap((options) => {
return {
...options,
isServerBuild: false,
compilerOptions: {
isCustomElement: (tag) => dominativeElements.indexOf(tag) >= 0,
hoistStatic: false,
},
};
});
});
}