parent
ac9efae8ef
commit
2949a750cc
|
@ -20,7 +20,7 @@
|
|||
<!-- 第三方不包统一版本,如果不指定,Spring 会为我们选择匹配的版本 -->
|
||||
<dubbo.version>2.7.15</dubbo.version>
|
||||
<flyway.version>7.15.0</flyway.version>
|
||||
<shiro.version>1.9.1</shiro.version>
|
||||
<shiro.version>1.10.0</shiro.version>
|
||||
<mssql-jdbc.version>7.4.1.jre8</mssql-jdbc.version>
|
||||
<postgresql.version>42.3.2</postgresql.version>
|
||||
<java-websocket.version>1.5.3</java-websocket.version>
|
||||
|
@ -127,7 +127,7 @@
|
|||
|
||||
<dependency>
|
||||
<groupId>org.apache.shiro</groupId>
|
||||
<artifactId>shiro-spring-boot-starter</artifactId>
|
||||
<artifactId>shiro-spring-boot-web-starter</artifactId>
|
||||
<version>${shiro.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -18,6 +18,7 @@ public class ShiroUtils {
|
|||
filterChainDefinitionMap.put("/resource/md/get/**", "anon");
|
||||
filterChainDefinitionMap.put("/resource/ui/get/**", "anon");
|
||||
filterChainDefinitionMap.put("/*.worker.js", "anon");
|
||||
filterChainDefinitionMap.put("/*.html", "anon");
|
||||
filterChainDefinitionMap.put("/login", "anon");
|
||||
filterChainDefinitionMap.put("/signin", "anon");
|
||||
filterChainDefinitionMap.put("/ldap/signin", "anon");
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
<version>${revision}</version>
|
||||
</parent>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>frontend</artifactId>
|
||||
|
||||
|
|
|
@ -73,6 +73,11 @@ module.exports = {
|
|||
}
|
||||
},
|
||||
},
|
||||
css: {
|
||||
extract: {
|
||||
ignoreOrder: true,
|
||||
}
|
||||
},
|
||||
chainWebpack: config => {
|
||||
// svg rule loader
|
||||
config.module
|
||||
|
|
Loading…
Reference in New Issue