merge_generalImprovements #94
|
@ -59,10 +59,6 @@
|
||||||
"sass-loader": "^12.6.0",
|
"sass-loader": "^12.6.0",
|
||||||
"style-loader": "^3.3.1",
|
"style-loader": "^3.3.1",
|
||||||
"url-loader": "^4.1.1",
|
"url-loader": "^4.1.1",
|
||||||
"webpack": "^5.75.0",
|
|
||||||
"webpack-cli": "^4.10.0",
|
|
||||||
"webpack-dev-server": "^4.11.1",
|
|
||||||
"webpack-merge": "^5.8.0",
|
|
||||||
"yaml-loader": "^0.5.0"
|
"yaml-loader": "^0.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,155 +0,0 @@
|
||||||
const path = require('path');
|
|
||||||
const webpack = require('webpack');
|
|
||||||
const AssetsWebpackPlugin = require('assets-webpack-plugin');
|
|
||||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
||||||
const merge = require('webpack-merge').merge;
|
|
||||||
const wpConfig = require('./webpack.config.json');
|
|
||||||
|
|
||||||
const env = process.env.NODE_ENV || 'development';
|
|
||||||
const devMode = env === 'development';
|
|
||||||
const outputPath = path.join(__dirname, wpConfig.buildDir);
|
|
||||||
const publicPath = '/' + wpConfig.buildDir + '/';
|
|
||||||
|
|
||||||
const baseConfig = {
|
|
||||||
entry: wpConfig.entry,
|
|
||||||
mode: devMode ? 'development' : 'production',
|
|
||||||
output: {
|
|
||||||
path: outputPath,
|
|
||||||
publicPath
|
|
||||||
},
|
|
||||||
module: {
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
test: /\.m?js$/,
|
|
||||||
exclude: /(node_modules|bower_components)/,
|
|
||||||
use: {
|
|
||||||
loader: 'babel-loader',
|
|
||||||
options: {
|
|
||||||
presets: ['@babel/preset-env']
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /tinymce\/.*\/skin\.css$/i,
|
|
||||||
use: [MiniCssExtractPlugin.loader]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /tinymce\/.*\/content\.css$/i,
|
|
||||||
url: false,
|
|
||||||
options: { esModule: false }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.css$/,
|
|
||||||
use: ['style-loader'],
|
|
||||||
exclude: [/node_modules/]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.yml$/,
|
|
||||||
use: ['json-loader', 'yaml-loader']
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.xml$/,
|
|
||||||
use: 'raw-loader'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.ttf$/,
|
|
||||||
type: 'asset/resource'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.scss$/,
|
|
||||||
use: [
|
|
||||||
'style-loader',
|
|
||||||
{
|
|
||||||
loader: 'sass-loader',
|
|
||||||
url: false,
|
|
||||||
options: {
|
|
||||||
sourceMap: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.(woff|woff2)$/,
|
|
||||||
use: [
|
|
||||||
{
|
|
||||||
loader: 'file-loader',
|
|
||||||
options: {
|
|
||||||
name: '[name].[ext]',
|
|
||||||
outputPath: 'fonts/'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
resolve: {
|
|
||||||
modules: [
|
|
||||||
__dirname + '/js',
|
|
||||||
__dirname,
|
|
||||||
__dirname + '/forms',
|
|
||||||
'node_modules',
|
|
||||||
'/usr/lib/node_modules'
|
|
||||||
]
|
|
||||||
},
|
|
||||||
node: {
|
|
||||||
__dirname: true
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
new AssetsWebpackPlugin({
|
|
||||||
path: outputPath
|
|
||||||
}),
|
|
||||||
new webpack.DefinePlugin({
|
|
||||||
_DEV_MODE: devMode,
|
|
||||||
_DEV_SERVER_PORT: wpConfig.devServerPort,
|
|
||||||
_PUBLIC_PATH: JSON.stringify(publicPath)
|
|
||||||
}),
|
|
||||||
new MiniCssExtractPlugin()
|
|
||||||
],
|
|
||||||
optimization: {
|
|
||||||
runtimeChunk: true,
|
|
||||||
splitChunks: {
|
|
||||||
chunks: 'all'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watchOptions: {
|
|
||||||
ignored: /node_modules/
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const prodConfig = {
|
|
||||||
output: {
|
|
||||||
filename: '[name].[chunkhash].js',
|
|
||||||
chunkFilename: 'chunk.[id].[chunkhash].js'
|
|
||||||
},
|
|
||||||
optimization: {
|
|
||||||
moduleIds: 'deterministic'
|
|
||||||
},
|
|
||||||
devtool: 'source-map'
|
|
||||||
};
|
|
||||||
|
|
||||||
const devConfig = {
|
|
||||||
output: {
|
|
||||||
filename: '[name].js',
|
|
||||||
chunkFilename: 'chunk.[id].js'
|
|
||||||
},
|
|
||||||
optimization: {
|
|
||||||
moduleIds: 'named'
|
|
||||||
},
|
|
||||||
devtool: 'eval',
|
|
||||||
devServer: {
|
|
||||||
host: '0.0.0.0',
|
|
||||||
static: __dirname,
|
|
||||||
port: wpConfig.devServerPort,
|
|
||||||
headers: { 'Access-Control-Allow-Origin': '*' },
|
|
||||||
proxy: {
|
|
||||||
'/api': 'http://localhost:3000',
|
|
||||||
'/': {
|
|
||||||
target: 'http://localhost/projects/hedera-web',
|
|
||||||
bypass: req => (req.path !== '/' ? req.path : null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const mrgConfig = devMode ? devConfig : prodConfig;
|
|
||||||
module.exports = merge(baseConfig, mrgConfig);
|
|
Loading…
Reference in New Issue