all: sync with master

This commit is contained in:
Ainar Garipov
2024-07-03 15:38:37 +03:00
parent f73717ec08
commit 158d4f0249
352 changed files with 33842 additions and 33276 deletions

View File

@@ -1,28 +1,9 @@
const StyleLintPlugin = require('stylelint-webpack-plugin');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
import { merge } from 'webpack-merge';
import common from './webpack.common.js';
module.exports = merge(common, {
export default merge(common, {
stats: 'minimal',
performance : {
hints : false
performance: {
hints: false,
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'eslint-loader',
options: {
failOnError: true,
configFile: 'prod.eslintrc',
},
},
],
},
plugins: [
new StyleLintPlugin({
files: '**/*.css',
}),
],
});