Giter Club home page Giter Club logo

Comments (6)

flyfishzy avatar flyfishzy commented on May 29, 2024 2

There are currently 2 solutions. First, you can set the build.target to specified browsers.

build: {
    target: ["chrome89", "edge89", "firefox89", "safari15"],
  },

Another option is use plugin vite-plugin-top-level-await .

import federation from '@originjs/vite-plugin-federation'
import topLevelAwait from 'vite-plugin-top-level-await'

export default defineConfig({
  plugins: [
    federation({
 ...
       }),
    topLevelAwait({
      // The export name of top-level await promise for each chunk module
      promiseExportName: '__tla',
      // The function to generate import names of top-level await promise in each chunk module
      promiseImportName: i => `__tla_${i}`
    })
  ],
  build: {
    target:"es2015"
  }
})

from vite-plugin-federation.

ruleeeer avatar ruleeeer commented on May 29, 2024

This might be one of the issues to consider, maybe try using then instead of top-level await, but I'm not sure if that would cause some weird problems

from vite-plugin-federation.

matrunchyk avatar matrunchyk commented on May 29, 2024

Having the same issue when I try to use terser instead of esbuild. I had to disable this plugin infortunately, while keeping subscribed to this thread.

from vite-plugin-federation.

vecpeng avatar vecpeng commented on May 29, 2024

Having the same issue, is there any progress there?

from vite-plugin-federation.

ruleeeer avatar ruleeeer commented on May 29, 2024

Since the solution already exists, close

from vite-plugin-federation.

echjordan0 avatar echjordan0 commented on May 29, 2024

It seems this issue is not resolved in v 1.1.6. I am able to shim top level await but with build target es2015 I get the following error and the styles for my remote are indeed not applied.

The remote style takes effect only when the build.target option in the vite.config.ts file is higher than that of "es2020".
(anonymous) @ instrument.js:111
d @ remoteEntry.js:1
./microfrontend @ remoteEntry.js:1
h @ remoteEntry.js:1
(anonymous) @ routes.ts:797

Is it possible to use this plugin with a build target below es2020?

from vite-plugin-federation.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.