You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello guys, thank you for maintaining this package.
I'm currently trying to migrate to version 2 I changed methods names as mentioned at the docs but I get this error on production but it works when I run in production mode locally
I'm guessing that my code can't access strings functions properly, any help dealing with this?
I don't use the vite plugin to compile the strings as it fails at the build looking for some .git/ folder. alternatively I use this cli command alongside my build script bunx @inlang/paraglide-js compile --project ./project.inlang --outdir ./src/paraglide
this is my docker file
FROM oven/bun:1.1-alpine AS build
WORKDIR /app
COPY package.json bun.lockb project.inlang ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
FROM caddy:latest
WORKDIR /usr/share/caddy
COPY Caddyfile /etc/caddy/Caddyfile
COPY --from=build /app/dist .
EXPOSE 5050
CMD ["caddy", "run", "--config", "/etc/caddy/Caddyfile"]
The text was updated successfully, but these errors were encountered:
I don't use the vite plugin to compile the strings as it fails at the build looking for some .git/ folder. alternatively I use this cli command alongside my build script
THe vite plugin that you can import from the Paraglide JS 2.0 beta is not dependent on git anymore. Are you using the vite plugin from the Paraglide JS 2.0 beta?
I removed all paraglide config and made the init command again but I currently get this error on the bun setup and now I'm depending on the new vite plugin to compile the strings
Hello guys, thank you for maintaining this package.
I'm currently trying to migrate to version 2 I changed methods names as mentioned at the docs but I get this error on production but it works when I run in production mode locally
I'm guessing that my code can't access strings functions properly, any help dealing with this?
I don't use the vite plugin to compile the strings as it fails at the build looking for some
.git/
folder. alternatively I use this cli command alongside my build scriptbunx @inlang/paraglide-js compile --project ./project.inlang --outdir ./src/paraglide
this is my docker file
The text was updated successfully, but these errors were encountered: