Version: 5.x

Vite

Vite is a tool for both local development and the building of applications. It was created within the Vue ecosystem, but can be used with other UI frameworks, too.

https://github.com/joeldenning/vite-single-spa-example

By default, Vite uses ES modules in local development, but not in production. This works well with single-spa, which encourages using in-browser modules as the interface for each microfrontend. To use vite with single-spa, you must export the single-spa lifecycle functions from your Vite’s main.js file and then make a few modifications to the vite.config.js file.

Modify the src/main.js file to not mount your app immediately, but rather to export the single-spa lifecycles. For Vue apps, see https://single-spa.js.org/docs/ecosystem-vue#usage.

The following Vite config can be used as the basis for a single-spa + Vite setup:

  1. import vue from '@vitejs/plugin-vue'
  2. export default {
  3. rollupOptions: {
  4. input: 'src/main.js',
  5. format: 'system',
  6. preserveEntrySignatures: true
  7. },
  8. base: 'http://localhost:3000',
  9. plugins: [vue({
  10. template: {
  11. transformAssetUrls: {
  12. base: '/src'
  13. }
  14. }
  15. })],
  16. }

Vite works well with development via import map overrides. You should use http://localhost:3000/src/main.js as the URL for your import map override.

single-spa works well with native modules, systemjs, or even both. With Vite + single-spa, a general recommendation is to use native modules during local development, but SystemJS in production (since browser support for Import Maps is still pending). Doing this is nice because it matches Vite’s development workflow; however, mixing native and systemjs modules also can have some caveats:

  • The browser and SystemJS maintain separate module registries. This means that you can’t share imports between SystemJS and native modules. So if you are doing an import map override for a Vite application on a page that also uses SystemJS, you may end up with multiple instances of Vue (and other shared libraries), which is different than how things will work in production. This is generally okay, except for situations where the Vue instance is modified via Vue.use().
  • This PR to SystemJS shows how you can populate native modules into the SystemJS registry, allowing for one-way sharing of modules between the two registries. The PR was closed due to some edge cases, but it generally works. Even though the PR is closed, you can paste the ESM extra into your root config and it will work. If you have interest in driving forward better SystemJS + ESM compatibility, comment on Github or Slack with your interest.

Vite - 图1Edit this page