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

github.com/nextcloud/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias <ilovemilk@wusa.io>2020-09-19 19:12:03 +0300
committerMatthias <ilovemilk@wusa.io>2020-09-19 19:12:03 +0300
commit95575d7688e50dfaddc34f9353f87556d61b82e4 (patch)
tree6312997dc305c4dd7872e343ed8429ecf73f8ed8 /webpack.common.js
parentdfeda8d4bdd88d5ec99a87610b47ade98a8065d7 (diff)
replace vaadin grid wie vuetify data table
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js30
1 files changed, 20 insertions, 10 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 4883df2..7eaf192 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -1,5 +1,6 @@
const path = require('path');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
+const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')
module.exports = {
@@ -15,18 +16,27 @@ module.exports = {
module: {
rules: [
{
- test: /\.css$/,
- use: [
- 'vue-style-loader',
- 'css-loader'
- ]
- },
- {
- test: /\.scss$/,
+ test: /\.s(c|a)ss$/,
use: [
'vue-style-loader',
'css-loader',
- 'sass-loader'
+ {
+ loader: 'sass-loader',
+ // Requires sass-loader@^7.0.0
+ options: {
+ implementation: require('sass'),
+ fiber: require('fibers'),
+ indentedSyntax: true // optional
+ },
+ // Requires sass-loader@^8.0.0
+ options: {
+ implementation: require('sass'),
+ sassOptions: {
+ fiber: require('fibers'),
+ indentedSyntax: true // optional
+ },
+ },
+ },
]
},
{
@@ -47,7 +57,7 @@ module.exports = {
}
]
},
- plugins: [new VueLoaderPlugin()],
+ plugins: [new VueLoaderPlugin(), new VuetifyLoaderPlugin()],
resolve: {
alias: {
vue$: 'vue/dist/vue.esm.js'