Jericho Aquino
Jericho Aquino
We love adventure, so we build it 👌👍
Thanks @wesleytodd and @slagiewka, I confirmed that it is a breaking issue with the new version. As for our *usecase* we only have this one route, that accepts all requests...
@krzysdz on that case, if we ever use [named capturing group](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Named_capturing_group) in Regex as path (and not string literal) like this ```js /^\/files\/(?.*)$/i ``` is it possible to get the...
Great! I love using Regex all the time, that's a one great thing to have.
@Xavious No luck! I can connect on SSH Server via CMD, so I did a port forwarding for the MySql Server. So on TablePlus I am connecting to MySql server...
Following this [StackOverflow link](https://stackoverflow.com/questions/78997907/the-legacy-js-api-is-deprecated-and-will-be-removed-in-dart-sass-2-0-0) led me to this temporary fix ```js //vite.config.ts export default defineConfig({ //..other config css: { preprocessorOptions: { scss: { silenceDeprecations: ["legacy-js-api"], }, }, }, }) ```
@Daandeve Thank you! it works.