Ernest

Results 23 comments of Ernest

Hello, Thank you for using our project to containerize your frontend. I'm delighted to hear it's working well for you. Regarding your question about Vite and the import-meta-env packages, it's...

Any updates here? We use swc instead of babel 😢 .

Take another example: ``` hook.tap({ name: 'a', before: 'b', }, () => { console.log('a') }) hook.tap({ name: 'b', before: 'c', }, () => console.log('b')) hook.tap('c', () => console.log('c')) hook.call() //...