correct @nextcloud/files/dav import + tailwindCSS

This commit is contained in:
GMrrc
2024-11-15 15:55:40 +01:00
parent 25ea9a33c3
commit 9aec836b45
11 changed files with 5997 additions and 288 deletions

View File

@ -7,21 +7,11 @@ webpackConfig.entry = {
main: { import: path.join(__dirname, 'src', 'main.js'), filename: 'main.js' },
}
webpackConfig.plugins.push(
new ESLintPlugin({
extensions: ['js', 'vue'],
files: 'src',
}),
)
webpackConfig.plugins.push(
new StyleLintPlugin({
files: 'src/**/*.{css,scss,vue}',
}),
)
webpackConfig.module.rules.push({
test: /\.svg$/i,
type: 'asset/source',
})
module.exports = webpackConfig