Ossi P.

Results 12 comments of Ossi P.

This is still an issue. Recently installed Nuxt.js version 2.14.6, and then installed vue-markdown to render markdown content for a website. Had to run `yarn add babel-runtime` to make this...

I have the same problem with Next.js (apparently so does everyone else). Neither direct import works, nor using the [Dynamic import](https://nextjs.org/docs/advanced-features/dynamic-import).

> > > @OssiPesonen Switching to version 1.4.0 worked for me Yes, downgrading back from 1.5.0 to 1.4.0 worked. Thanks!

Without seeing your code I have no idea what's wrong, but as a helpful tip coming from someone who had to set up this library today, here's something I did....

Halite itself can't be used to fetch those keys, but AWS KMS atleast should accept externally created keys to store them. You need to create the integration with AWS KMS...

I happen to experience the same issue. Usage: Vue.toasted.success(response, { icon: 'times-circle' }) TypeScript error: Argument of type '{ icon: string; }' is not assignable to parameter of type 'ToastOptions'....

This should be documented on the README.md. The short examples provided do not contain both creation of the queue and the permission grant. There should be examples on these variations...

We are suffering from a generic issue like this as well, and getting repeated errors in Sentry. GA4React intialization failed {"type":"error"} There's basically nothing more. Sometimes we get timeout errors....

Tad late to the party here, but here's how I solved my types. ```typescript import * as mysql from 'mysql2'; import { Connection, Pool } from 'mysql2'; export const createConnectionPool...

Someone suggested a hack such as this to fix it: ```js const icons = Quill.import('ui/icons'); icons['code-block'] = '\n' + '\t\n' + '\t\n' + '\t\n' + '\t\n' + ''; ``` But...