在angular2 cli中找到systemjs.config.js的位置

时间:2017-08-03 10:02:12

标签: angular angular-cli

我需要更新该文件,为'angular2-in-memory-web-api'添加1个引用/依赖项作为文件,并且我的文件中缺少这个引用? 任何人都可以帮我创建/找到相同的内容吗? 感谢

2 个答案:

答案 0 :(得分:3)

@Configuration @EnableWebSecurity @EnableGlobalMethodSecurity(securedEnabled = true, prePostEnabled = true) public class WebSecurityConfig extends WebSecurityConfigurerAdapter { @Override public void configure(WebSecurity web) throws Exception { web.ignoring().antMatchers("/js/**", "/css/**", "/fonts/**", "/static", "/swagger-ui.html"); } @Override protected void configure(HttpSecurity http) throws Exception { http .csrf().disable() .antMatcher("/**") .addFilterBefore(authFilter(), BasicAuthenticationFilter.class) .authorizeRequests() .antMatchers("/health").permitAll() .anyRequest().authenticated() .and().sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS); } @Bean public MacaroonsAuthFilter authFilter() { return new MacaroonsAuthFilter(); } } Angular-CLI开始不使用SystemJS。阅读this announcement。因此,不再有Beta.12。它现在使用systemjs.config.js

  

我需要更新该文件以添加1个引用/依赖

使用webpack,您无需在配置中添加任何内容。 Webpack在构建类型期间自动解析依赖关系。

答案 1 :(得分:1)

Angular2使用 webpack ,在angular2-cli创建的项目中没有systemjs.config.js

这里有更详细的解释 Differences between SystemJS and Webpack