106 lines
2.8 KiB
JavaScript
106 lines
2.8 KiB
JavaScript
const path = require('path');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
const webpack = require('webpack');
|
|
const aliases = require('./scripts/create-symlinks/config.json');
|
|
|
|
module.exports = {
|
|
mode: 'development',
|
|
entry: {
|
|
app: {
|
|
import: './src/app/index.tsx',
|
|
dependOn: [
|
|
'rct',
|
|
],
|
|
},
|
|
'rct': ['react', 'react-dom', 'react-router-dom'],
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, 'build'),
|
|
filename: '[fullhash].[name].js',
|
|
},
|
|
devServer: {
|
|
contentBase: './build',
|
|
historyApiFallback: true,
|
|
compress: true,
|
|
open: true,
|
|
port: 3189,
|
|
http2: true,
|
|
proxy: {
|
|
'/api/users': {
|
|
target: 'http://vigdorov.ru:3011',
|
|
pathRewrite: { '^/api': '' },
|
|
secure: false,
|
|
},
|
|
'/api/bot': {
|
|
target: 'http://vigdorov.ru:3012',
|
|
pathRewrite: { '^/api/bot': '' },
|
|
secure: false,
|
|
},
|
|
},
|
|
},
|
|
resolve: {
|
|
extensions: ['.tsx', '.ts', '.js'],
|
|
alias: Object.entries(aliases).reduce((acc, [key, aliasPath]) => ({
|
|
...acc,
|
|
[key]: path.resolve(__dirname, `${aliasPath}/`),
|
|
}), {}),
|
|
},
|
|
optimization: {
|
|
splitChunks: {
|
|
chunks: 'all',
|
|
cacheGroups: {
|
|
defaultVendors: {
|
|
test: /[\\/]node_modules[\\/]/,
|
|
enforce: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.[tj]sx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif|ico)$/i,
|
|
use: [
|
|
{
|
|
loader: 'file-loader',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.(txt|json)$/i,
|
|
use: [
|
|
{
|
|
loader: 'file-loader',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.(sa|sc|c)ss$/,
|
|
use: [
|
|
MiniCssExtractPlugin.loader,
|
|
'css-loader',
|
|
'sass-loader',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
template: './public/index.html',
|
|
filename: 'index.html',
|
|
favicon: './public/favicon.ico'
|
|
}),
|
|
new MiniCssExtractPlugin({
|
|
filename: '[fullhash].[name].css',
|
|
}),
|
|
new CleanWebpackPlugin(),
|
|
],
|
|
};
|