"configurations": [
{
...
"request": "launch",
"type": "dart",
"args": ["--host-vmservice-port", "65001", "--dds-port", "65002"]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import path from 'node:path' | |
import fs from 'node:fs/promises' | |
import { globby } from 'globby' | |
const files = await globby('./dist/**/index.html') | |
await Promise.all( | |
files.map(async (htmlPath) => { | |
const pageStyles = [] | |
const stylesPaths = [] |
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.