1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 10:08:52 +08:00

forbid index minifying

This commit is contained in:
lana-k
2022-06-11 19:29:42 +02:00
parent 310a939109
commit a20dd7f849
4 changed files with 14484 additions and 11862 deletions

26290
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "sqliteviz", "name": "sqliteviz",
"version": "0.18.0", "version": "0.18.1",
"license": "Apache-2.0", "license": "Apache-2.0",
"private": true, "private": true,
"scripts": { "scripts": {

View File

@@ -93,6 +93,11 @@
</svg> </svg>
</div> </div>
</div> </div>
<!-- extention slot -->
<!-- built files will be auto injected --> <!-- built files will be auto injected -->
</body> </body>
</html> </html>

View File

@@ -41,5 +41,12 @@ module.exports = {
.end() .end()
config.module.rule('js').exclude.add(/worker\.js$/) config.module.rule('js').exclude.add(/worker\.js$/)
config
.plugin('html')
.tap(args => {
args[0].minify = false
return args
})
} }
} }