How to load a local html file into a NativeScript webview
问题 I have modified the webpack.config.js to add a local file called index.html the code below : new CopyWebpackPlugin([ { from: { glob: "index.html" } }, { from: { glob: "fonts/**" } }, { from: { glob: "**/*.jpg" } }, { from: { glob: "**/*.png" } }, ], { ignore: [`${relative(appPath, appResourcesFullPath)}/**`] }), new nsWebpack.GenerateNativeScriptEntryPointsPlugin("bundle"), This is how I configured my webview in the main-page.xml file the code below: <WebView row="1" loaded="onWebViewLoaded"