chore: cleanup webpack config

All 3 changes were upstreamed to the shared config lib in the meantime.

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
This commit is contained in:
Richard Steinmetz 2024-02-19 19:22:24 +01:00
parent 337be5e317
commit fa2919bbcc
No known key found for this signature in database
GPG Key ID: 27137D9E7D273FB2
1 changed files with 0 additions and 12 deletions

View File

@ -12,18 +12,6 @@ webpackRules.RULE_SVG = {
}
webpackConfig.module.rules = Object.values(webpackRules)
webpackConfig.module.rules.push({
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
})
webpackConfig.resolve.extensions = ['.js', '.vue', '.ts', '.tsx']
webpackConfig.resolve.fallback = { fs: false }
webpackConfig.resolve.alias = {
vue$: 'vue/dist/vue.esm.js',
}
module.exports = webpackConfig