Stefan a8fb355a8d feat(wallet) activate Wallet connect modal from deep-links
- Open wallet connect modal when the application is opened from a
  deep link
- Add test entry that opens wallet connect modal with mocked
  StatusDesktop app that can be used for testing
- Add tests

Closes #12641
2023-12-12 20:12:53 +01:00

22 lines
392 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/main.ts',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'generated'),
module: true,
//clean: true,
},
devServer: {
static: path.join(__dirname, "."),
compress: true,
port: 9000,
client: {
overlay: false,
}
},
experiments: {
outputModule: true,
},
};