Henrique
Henrique
I think you have to pass the className of custom size in the printMap() function, it works for me ```js printer.printMap('a3CssClass', 'MyManualPrint') ```
Can be fixed using the solution of this issue: https://stackoverflow.com/questions/74784673/vue-gtm-error-you-may-need-an-appropriate-loader-to-handle-this-file-type vue.config.js ```js { transpileDependencies: ['@gtm-support/core', '@gtm-support/vue2-gtm'] } ``` nuxt.config.js ```js { build: { transpile: ['@gtm-support/core', '@gtm-support/vue2-gtm'] } } ```
Works for me when I update the vuex package to 3.1.1 and put the code like this way: ``` if(TNS_ENV !== 'production') { Vue.use(VueDevtools, { host: '' }) } import...
An ideia would be rethrow the error in this line: https://github.com/unjs/citty/blob/fea15c4b02cebd5f454908bad4b6b7ba694ee9ca/src/main.ts#L34-L36 This way: ```js if (!isCLIError) { throw error; } ``` And then we can handle the error in the...
I see, indeed the game work well with the other maps. But i agree with the morilli, in this case the OsuLazer loses for the Osu!stable in the fps, i...
Alternative for now you can: - login in to the target vps - became root user `sudo su` - create a file `setup.sh` with the contents of the script -...