aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorcaleb.mabry.15@cnu.edu <caleb.mabry.15@cnu.edu>2022-03-23 00:33:18 -0400
committercaleb.mabry.15@cnu.edu <caleb.mabry.15@cnu.edu>2022-03-23 00:33:18 -0400
commit7c88c0bcca6e47cca4e2632df8ced778fa38c341 (patch)
tree6f6bb8ac77983da8883dc59cf11238db09d252ae /webpack.config.js
parent4d09a4a7105de76189fae41e86c9186ba7ff76fd (diff)
Final commit
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 68546c3..0ffb9ab 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -23,7 +23,7 @@ module.exports = {
},
devtool: 'source-map',
resolve: {
- extensions: ["", ".webpack.js", ".web.js", ".ts", ".tsx", ".js"],
+ extensions: ['.js', '.jsx', '.tsx', '.ts', '.json'],
},
devServer: {
static: {
@@ -58,7 +58,7 @@ module.exports = {
},
},
},
- { test: /\.tsx?$/, loader: "ts-loader" },
+ { test: /\.ts?$/, loader: "ts-loader" },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ test: /\.js$/, loader: "source-map-loader" },
],
@@ -98,7 +98,7 @@ module.exports = {
new webpack.DefinePlugin({
'process.env': JSON.stringify(process.env),
}),
- new WorkboxPlugin.GenerateSW(),
+ // new WorkboxPlugin.GenerateSW(),
],