Skip to content
Advertisement

Vue dynamic component loading problem with Nginx deployment

I have the following situation:

I have a component in my vue app that dynamically loads components depending on an API query. Here is my template:

JavaScript

Here is my script part

JavaScript

So basically the app dynamically loads a given component depending on some string. This works perfectly fine on my dev environment, however if i try to deploy it in my docker container with nginx, i get a MIME error

JavaScript

Probably because that directory doesn’t exist. Here is my nginx.conf

JavaScript

Thanks in advance!

Advertisement

Answer

It is not clear whether you are using Vite or Webpack (Vue CLI) but both have a very similar limitations when using dynamic imports (import(...))

Here is a documentation for @rollup/plugin-dynamic-import-vars used by Vite

Most important limitation is based on the fact that import() must be processed by a bundler at compile time. So the bundler must be able to statically at compile time be able to analyze the argument and deduce what are the possible imports. Using variable is of course out of the question…

So one way to fix it is this:

JavaScript

…or without using the map:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement