Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thegeeklab/hugo-geekdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kaussow <mail@thegeeklab.de>2022-06-10 22:44:08 +0300
committerGitHub <noreply@github.com>2022-06-10 22:44:08 +0300
commit7195431d8c915c76730243b11d66fedf7fe1bb47 (patch)
tree5710b29f568134daf6050ed949b7c01f7eb90cce /webpack.config.js
parented5c770d579406ccf8a3b9b1411739d54bff1665 (diff)
fix: improve keyboard accessability for anchors and code blocks (#434)v0.32.1
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 8defb8a..f0064be 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -138,7 +138,7 @@ module.exports = (env, argv) => {
// FIXME: https://github.com/webpack-contrib/sass-loader/issues/962#issuecomment-1002675051
sourceMap: argv.mode === "development" ? true : false,
sourceMapEmbed: argv.mode === "development" ? true : false,
- outputStyle: "compressed",
+ outputStyle: argv.mode === "development" ? "expanded" : "compressed",
includePaths: [nodeModulesPath]
}
}