Hi,
I struggling with getting sourcemaps to show in my chromedev tools in a basic webapp running on my 2017 model U55MU7500 TV. I've tried every possible devtool setting in webpack and nothing is working. I'm still pretty new to Tizen TV webapp development but I thought I'd managed to get this working at one point. Has anyone else managed to get sourcemaps to show? Where might I be going wrong?
Here's my webpack.config.js
const webpack = require('webpack'); const CopyWebpackPlugin = require('copy-webpack-plugin'); module.exports = { devtool: "source-map", plugins: [ new CopyWebpackPlugin([ '.tproject', 'config.xml', {from: 'src/*', ignore: [ '*.js' ], flatten: true} ]) ] }
and I've confirmed that the sourcemap file is indeed showing in the .wgt vefore getting pushed to the TV.