diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-12-07 20:03:50 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-12-10 15:13:15 +0100 |
commit | cfa7c54814c2c1584878f7e4bd9f6205c438404d (patch) | |
tree | 0ad8de6c4a4dd3e5e863b46bd7e61df99dcd9d36 /apps/oauth2/webpack.common.js | |
parent | 5a9fc01ea64d6da2a5fc9d5148f7d823b59fd8a4 (diff) | |
download | nextcloud-server-cfa7c54814c2c1584878f7e4bd9f6205c438404d.tar.gz nextcloud-server-cfa7c54814c2c1584878f7e4bd9f6205c438404d.zip |
OAuth2: move to scoped css in vue app
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/webpack.common.js')
-rw-r--r-- | apps/oauth2/webpack.common.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/oauth2/webpack.common.js b/apps/oauth2/webpack.common.js index 01e01940a35..f401205e4d1 100644 --- a/apps/oauth2/webpack.common.js +++ b/apps/oauth2/webpack.common.js @@ -13,7 +13,11 @@ module.exports = { { test: /\.vue$/, loader: 'vue-loader', - } + }, + { + test: /\.css$/, + use: ['vue-style-loader', 'css-loader'] + }, ] }, plugins: [ |