diff options
| author | Caleb Mabry <36182383+caleb-mabry@users.noreply.github.com> | 2022-03-23 15:33:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-23 15:33:08 -0400 |
| commit | 844dc7e5fe80bca530ccbf62198f183284074108 (patch) | |
| tree | b6d1641c37630f72a2ad4de958de53999a6852b1 /webpack.config.js | |
| parent | a726bdd00060876be91b6b3f134ecc6867bbeed6 (diff) | |
| parent | efe16e1c1e7d4b0ea13c04b816d046ad21eeadb0 (diff) | |
Merge pull request #123 from caleb-mabry/custom-ini
Adding Custom Markdown Support Based on Asset File
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webpack.config.js b/webpack.config.js index edfe0a4..07bca15 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -24,7 +24,7 @@ module.exports = { }, devtool: 'source-map', resolve: { - extensions: ["", ".webpack.js", ".web.js", ".ts", ".tsx", ".js"], + extensions: ['.js', '.jsx', '.tsx', '.ts', '.json'], }, devServer: { static: { @@ -59,7 +59,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" }, ], @@ -99,7 +99,7 @@ module.exports = { new webpack.DefinePlugin({ 'process.env': JSON.stringify(process.env), }), - new WorkboxPlugin.GenerateSW(), + // new WorkboxPlugin.GenerateSW(), ], |
