We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb16ac commit 6545432Copy full SHA for 6545432
webpack.config.js
@@ -16,7 +16,7 @@ module.exports = env => {
16
const appComponents = [
17
"tns-core-modules/ui/frame",
18
"tns-core-modules/ui/frame/activity",
19
- resolve(__dirname, "app/activity.android.ts"),
+ "./activity.android.ts",
20
];
21
22
const platform = env && (env.android && "android" || env.ios && "ios");
@@ -51,7 +51,7 @@ module.exports = env => {
51
const appResourcesFullPath = resolve(projectRoot, appResourcesPath);
52
53
const entryModule = aot ?
54
- nsWebpack.getAotEntryModule(appFullPath) :
+ nsWebpack.getAotEntryModule(appFullPath) :
55
`${nsWebpack.getEntryModule(appFullPath)}.ts`;
56
const entryPath = `.${sep}${entryModule}`;
57
0 commit comments