Поправлены стили формы добавления ивента, исправлены зависимости package.json

This commit is contained in:
DwCay
2022-10-12 01:14:21 +03:00
parent 75b1f361ac
commit f86702f653
22 changed files with 1654 additions and 1267 deletions

View File

@@ -1,9 +1,8 @@
const { defineConfig } = require('@vue/cli-service');
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
chainWebpack: (config) => {
const pugRule = config.module.rule('pug');
const pugRule = config.module.rule("pug");
pugRule.uses.clear();
pugRule.oneOfs.clear();
@@ -17,30 +16,19 @@ module.exports = defineConfig({
oneOf: [
{
resourceQuery: /^\?vue/u,
loader: '@webdiscus/pug-loader',
loader: "@webdiscus/pug-loader",
options: {
method: 'html',
method: "html",
},
},
{
loader: '@webdiscus/pug-loader',
loader: "@webdiscus/pug-loader",
options: {
method: 'compile',
method: "compile",
},
},
],
},
{
test: /\.scss$/,
use: [
{
loader: 'postcss-loader'
},
{
loader: 'sass-loader'
},
]
},
],
},
},