We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22fe50 commit 43a3561Copy full SHA for 43a3561
1 file changed
src/ApplicationTemplate/Shopware6.php
@@ -51,5 +51,19 @@ private function initializeDefaultConfiguration(): void
51
'public/media',
52
'public/thumbnail',
53
]);
54
+
55
+ // Override the default deploy exclude, because we need the source files (scss/ts)
56
+ // on the deploy step to compile the assets.
57
+ $this->setDeployExclude([
58
+ './.git',
59
+ './.github',
60
+ './deploy.php',
61
+ './.gitlab-ci.yml',
62
+ './Jenkinsfile',
63
+ '.DS_Store',
64
+ '.idea',
65
+ '.gitignore',
66
+ '.editorconfig',
67
+ ]);
68
}
69
0 commit comments