fix: never minify classes

This commit is contained in:
Jean-Baptiste Pasquier
2021-01-26 18:46:26 +01:00
parent a936a343b5
commit 8db68ec680
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ const options = {
cache: process.env.NODE_ENV !== 'production',
cacheDir: '.cache',
contentHash: false,
minify: process.env.NODE_ENV === 'production',
minify: false,
scopeHoist: false,
target: 'browser',
bundleNodeModules: false,