diff options
| author | MetaMuffin <metamuffin@yandex.com> | 2021-08-06 14:44:49 +0200 |
|---|---|---|
| committer | MetaMuffin <metamuffin@yandex.com> | 2021-08-06 14:44:49 +0200 |
| commit | ff350d6c0ea1f3c12076349bd64b7df1318878ad (patch) | |
| tree | d8dcdedebc5b1f87b32d53f8c7b5453c93b1f277 /webpack.config.js | |
| parent | b772ad9b0c0c4284e6f8fc87e675e4d44f272959 (diff) | |
| download | keks-meet-ff350d6c0ea1f3c12076349bd64b7df1318878ad.tar keks-meet-ff350d6c0ea1f3c12076349bd64b7df1318878ad.tar.bz2 keks-meet-ff350d6c0ea1f3c12076349bd64b7df1318878ad.tar.zst | |
fixed production env
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 98c0a9b..0000000 --- a/webpack.config.js +++ /dev/null @@ -1,37 +0,0 @@ -const path = require('path'); - -module.exports = { - mode: "development", - entry: './source/client/index.ts', - module: { - rules: [ - { - test: /\.tsx?$/, - loader: 'ts-loader', - exclude: /node_modules/, - options: { - configFile: "tsconfig.client.json" - } - }, - { - enforce: "pre", - test: /\.js$/, - loader: "source-map-loader" - } - ], - }, - resolve: { - modules: ['source','node_modules'], - extensions: ['.tsx', '.ts', '.js', '.json'], - }, - output: { - filename: 'bundle.js', - path: path.resolve(__dirname, 'public/dist'), - pathinfo: false - }, - optimization: { - removeAvailableModules: false, - removeEmptyChunks: false, - splitChunks: false, - }, -}; |