mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
c7b0c7aa6e
* stash * stash * stash * stash * preset * @types/dragula
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import * as path from 'path';
|
|
import * as webpack from 'webpack';
|
|
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
|
|
|
module.exports = {
|
|
mode: isProduction ? 'production' : 'development',
|
|
entry: isProduction
|
|
? ['./demo/src/index']
|
|
: [
|
|
'webpack-dev-server/client?http://localhost:3000',
|
|
'webpack/hot/only-dev-server',
|
|
'./demo/src/index',
|
|
],
|
|
output: {
|
|
path: path.join(__dirname, 'demo/static'),
|
|
filename: 'bundle.js',
|
|
publicPath: isProduction ? 'static/' : '/static/',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|ts)x?$/,
|
|
loader: 'babel-loader',
|
|
include: [
|
|
path.join(__dirname, 'src'),
|
|
path.join(__dirname, 'demo/src'),
|
|
],
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
plugins: isProduction ? [] : [new webpack.HotModuleReplacementPlugin()],
|
|
devServer: isProduction
|
|
? null
|
|
: {
|
|
publicPath: '/static/',
|
|
port: 3000,
|
|
contentBase: './demo/',
|
|
hot: true,
|
|
stats: {
|
|
colors: true,
|
|
},
|
|
historyApiFallback: true,
|
|
},
|
|
devtool: 'eval-source-map',
|
|
};
|