diff options
author | 2020-06-08 00:31:07 +0200 | |
---|---|---|
committer | 2020-06-08 00:31:07 +0200 | |
commit | fba0701df2e4d36738c8212d1c00113de0705595 (patch) | |
tree | f14220b114772640e037cd0a6adb254c24bc28b0 /vue.config.js | |
parent | b013903c41f52dd004ecec61909e8e92d3d901e0 (diff) | |
download | it-tools-fba0701df2e4d36738c8212d1c00113de0705595.tar.gz it-tools-fba0701df2e4d36738c8212d1c00113de0705595.tar.zst it-tools-fba0701df2e4d36738c8212d1c00113de0705595.zip |
feat: contributors + changelogs in about page
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | vue.config.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vue.config.js b/vue.config.js index 62048c4..8f6b840 100644 --- a/vue.config.js +++ b/vue.config.js @@ -6,6 +6,11 @@ module.exports = { ], configureWebpack: () => { return { + module:{ + rules: [ + { test: /\.md$/, use: 'raw-loader' } + ] + }, plugins: [ new webpack.DefinePlugin({ 'process.env': { |