summaryrefslogtreecommitdiffstats
path: root/webpack.config.js
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2024-02-19 19:22:24 +0100
committerRichard Steinmetz <richard@steinmetz.cloud>2024-02-19 19:22:24 +0100
commitfa2919bbcce3dd0f39f0a76afc57f93d4a8c3bbc (patch)
tree34b75e02d4735db185df577051ecc7b2c29afde1 /webpack.config.js
parent337be5e317fdd82302ce436803847263b4c4cb6e (diff)
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>
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 458d70d2..91ee5634 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -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