We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074a929 commit 941c585Copy full SHA for 941c585
webpack.config.js
@@ -45,6 +45,10 @@ const productionPlugins = [
45
path.join(__dirname, 'resources/assets/scripts/**/*.vue'),
46
path.join(__dirname, 'resources/themes/pterodactyl/**/*.blade.php'),
47
]),
48
+ // Don't let PurgeCSS remove classes ending with -enter or -leave-active
49
+ // They're used by Vue transitions and are therefore not specifically defined
50
+ // in any of the files are are checked by PurgeCSS.
51
+ whitelistPatterns: [/-enter$/, /-leave-active$/],
52
extractors: [
53
{
54
extractor: TailwindExtractor,
0 commit comments