Mohamed Gharib
Mohamed Gharib
Note: this seems to be an issue **only** for dynamic imports `await import(...)`, for static import it works just fine `import autoTable from 'jspdf-autotable'`.
I was able to get it to work after setting `module` and `moduleResolution` TS config to `nodeNext` as mentioned in the thread, I also needed to add `type: "module"` in...
Have you tried the TS config solution?
You can easily change the left margin: ```js autoTable(doc, { // margin: {left: 0}, }) ```
I don't get it, do you want the window to be resizable or not? in go you set `DisableResize: true` so it it shouldn't be resizable, isn't that what you...
I don't see any `import` or `` tag for `byted_acrawler.js`, this is where I assume `GetEncryptParam()` is defined right? Where is the function declared and where do you import it?...
> I want to know the difference between dev and build in processing js files in the assets directory `wails dev` runs the `"frontend:dev:watcher"` command configured in [`wails.json`](https://wails.io/docs/reference/project-config), If you're...
@RobQuistNL Vite works with `type="module"` scripts, if you have a normal script it will work in dev but not in build because vite won't copy or bundle it so it...
In v4 we will remove `doc.autoTable({ ... })` in favor of `autoTable(doc, { ... })` which will return `Table` with `finalY` property and other table info.
Please reproduce the issue in a [codepen](https://codepen.io/mmghv/pen/YzzNMLO) with a minimal example.