Skip to content

Commit

Permalink
Merge pull request #3 from codeconsole/grace-gradle-default-skipNonDi…
Browse files Browse the repository at this point in the history
…gests
  • Loading branch information
rainboyan authored Aug 30, 2024
2 parents c4434bc + 695892a commit 2c220e2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class AssetPipelineExtensionImpl implements AssetPipelineExtension {
boolean enableSourceMaps = true
boolean minifyCss = true
boolean enableDigests = true
boolean skipNonDigests = false
boolean skipNonDigests = true
boolean enableGzip = true
boolean packagePlugin=false
boolean developmentRuntime=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ class AssetPipelinePlugin implements Plugin<Project> {
config.cacheLocation = "${project.buildDir}/.assetcache"
if (project.extensions.findByName('grails')) {
defaultConfiguration.assetsPath = "${project.projectDir}/app/assets"
defaultConfiguration.skipNonDigests = true
} else {
defaultConfiguration.assetsPath = "${project.projectDir}/src/assets"
}
Expand Down

0 comments on commit 2c220e2

Please sign in to comment.