Replies: 4 comments 1 reply
-
|
Forgot to say I am use VSCode with the following launch.json as suggested from pocketbase/pocketbase#3635 { |
Beta Was this translation helpful? Give feedback.
-
|
This seems like it might be a Windows issue. Do you have the ability to test on another platform to confirm? |
Beta Was this translation helpful? Give feedback.
-
|
Thanks @benallfree as mentioned in #90 , this can be fixed by using the WSL VSCode extension. Very happy with how that works, many thanks for the project!!! |
Beta Was this translation helpful? Give feedback.
-
|
Basically "It's a compatibility layer for Linux binaries to let them run on Windows. It's similar to Wine on Linux, but going in the other direction of course." |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Love the simplicity of this project. Looking at the starter kit for daisyUI docs
package.json needs to change from
"scripts": {
"dev:css": "tailwindcss -i ./pb_hooks/pages/app.tailwind.css -o ./pb_hooks/pages/app.css --watch"
},
to
"scripts": {
"dev:css": "tailwindcss -i ./pb_hooks/pages/assets/app.tailwind.css -o ./pb_hooks/pages/assets/app.css --watch"
},
to match the folder structure
but then on starting with
./pocketbase serve --dir=pb_data --dev
I see
ERROR GoError: SyntaxError: C:\Source\pp-daisyui-docs\node_modules\marked\lib\marked.cjs: Line 2213:3 Could not load source map: unsupported source map URL scheme: c pocketpages-plugin-marked
2025/09/07 17:34:49 SyntaxError: C:\Source\pp-daisyui-docs\node_modules\marked\lib\marked.cjs: Line 2213:3 Could not load source map: unsupported source map URL scheme: c
which is not so obvious :(
Beta Was this translation helpful? Give feedback.
All reactions