Moisés Bites

Results 17 comments of Moisés Bites

I solved using this: ```JS import Processor from 'windicss'; const processor = new Processor(); function windi(strings, ...values) { const str = strings.reduce((query, queryPart, i) => { const valueExists = i...

@alexanderniebuhr Thank you very much. For while, I'm using that function to solve this Issue, but if there was a more elegant way to solve this automatically, it would be...

> @moisesbites I wrote a preprocessor to overcome this challenge: https://www.npmjs.com/package/svelte-deep-wind-preprocess Thank you. I will try. Please, it would be interesting to correct the github project reference in the https://www.npmjs.com/package/svelte-deep-wind-preprocess.

try this: `preprocess: [windi({}), preprocess()],` in svelte.config.js. ```JS import { windi } from 'svelte-windicss-preprocess'; import preprocess from 'svelte-preprocess'; [....] /** @type {import('@sveltejs/kit').Config} */ const config = { preprocess: [windi({}), preprocess()],...

> Hello @moisesbites! > > Can you share with us what _exactly_ you are doing? What database are you trying to run commands in, and what happens if you add...

@addaleax Thank you. I appreciate your help. For while, running all commands with "use" it's working. So, I will wait for the fix that. This extension it's very useful for...

I used a /routes/+layout.server.ts and a protected as the first hook in a sequence of hooks. Inside the protect I implemented the logic of logged user (or not) and redirect...

> Edit: As others pointed out, adding `devalue`, `cookie` and `set-cookie-parser` as production dependencies and running `npm ci --prod` fixes the issues, including the `import { json } from '@sveltejs/kit'`...

> > Edit: As others pointed out, adding `devalue`, `cookie` and `set-cookie-parser` as production dependencies and running `npm ci --prod` fixes the issues, including the `import { json } from...