Torjus Eidet

Results 6 comments of Torjus Eidet

Adding the following to your `backpack.config.js` should do the trick. It removes source maps and bundles files from `node_modules`. ``` module.exports = { webpack: (config, options, webpack) => { config.devtool...

``` const path = require('path'); module.exports = { webpack: (config, options, webpack) => { if (options.env === 'production') { config.devtool = false; config.plugins.splice(1, 1); config.output.path = path.join(process.cwd(), 'dist'); } return...

Any hope getting a new release? The iOS15 Webgl bug is also critical for many, I think. @tsl0922: Seems like you're the only one running the release actions. Any possibility...

Are you sure #769 wasn't fixed by #877?

I do understand that my use case is a bit strange: We run read only k9s instances in a container inside the cluster, that is exposed with a web terminal...

We've used K9s (in read only mode) together with https://github.com/tsl0922/ttyd, as an alternative to the Kubernetes Dashboard, to provide quick insights into our clusters from a browser. Worked like a...