15 lines
350 B
Java
15 lines
350 B
Java
|
|
package com.madeu.config;
|
||
|
|
|
||
|
|
import nz.net.ultraq.thymeleaf.layoutdialect.LayoutDialect;
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
public class ThymeleafLayoutConfig {
|
||
|
|
|
||
|
|
@Bean
|
||
|
|
public LayoutDialect layoutDialect() {
|
||
|
|
return new LayoutDialect();
|
||
|
|
}
|
||
|
|
}
|