CONFIGURAR TEMPLATE PREMIUM #1880
-
Boa tarde, poderiam me ajudar a configurar um template premium? na doc pede para rodar um comando do SASS porém esse comando não está fazendo nada... |
Beta Was this translation helpful? Give feedback.
Answered by
melloware
May 11, 2024
Replies: 2 comments 1 reply
-
Sure just add this to your Or you can do <plugin>
<groupId>io.github.cleydyr</groupId>
<artifactId>dart-sass-maven-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>generate-css-using-sass</id>
<phase>generate-resources</phase>
<goals>
<goal>compile-sass</goal>
</goals>
</execution>
</executions>
<configuration>
<inputFolder>${basedir}/src/main/webapp/resources/</inputFolder>
<outputFolder>${basedir}/src/main/webapp/resources/</outputFolder>
<update>true</update>
<noSourceMap>true</noSourceMap>
<style>COMPRESSED</style>
<quiet>false</quiet>
</configuration>
</plugin> |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
melloware
-
I have a running poseidon using PrimeFaces 13.0.7. Are you on PF Discord channel? send me a Direct Message. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sure just add this to your
pom.xml
then it will recompile on everymvn clean package
Or you can do
mvn dart-sass:compile-sass
or to watch for changesmvn dart-sass:watch-sass