Closed sigma-andex closed 6 months ago
Any insights what that plugin is doing internally?
Can confirm, I solved it by adding a specific ladle vite config without the remix
plugin.
In ~/.vite.config.ts
we exported our plugin settings so that we could reuse it in ./.ladle/vite.config.ts
.
Use it then with:
"dev:ladle": "ladle dev --viteConfig ./.ladle/vite.config.ts"
Would love to solve the issue, this is more a work around.
Seems like Remix are aware of the issue, see here.
For now I just follow the Storybook way by exclude the remix plugin if I'm running the ladle CLI
const isLadle = process.argv[1]?.includes("ladle");
export default defineConfig({
server: {
port: 8081
},
// https://remix.run/docs/en/main/future/vite#plugin-usage-with-other-vite-based-tools-eg-vitest-storybook
// refer to the link above to understand why we use process.env.VITEST or isLadle
plugins: [
!isLadle && remix(remixConfig),
...
I guess this is not something we can fix on our side. People should follow their advice of excluding it for now as @andychongyz suggests.
Describe the bug
Ladle fails to start with the following error message when remix is in the vite.config:
Reproduction
See https://stackblitz.com/edit/ladle-xmfkzx?file=vite.config.ts
Environment