填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

@angular/platform-server/init

Initializes the server environment for rendering an Angular application.

For example, it provides shims (such as DOM globals) for the server environment.

The initialization happens as a side effect of importing the entry point (i.e. there are no specific exports):

      
      import '@angular/platform-server/init';
    

The import must come before any imports (direct or transitive) that rely on DOM built-ins being available.

入口点的导出

Entry point exports

没有公共导出。

No public exports.