webpack-bootstrap-ui-kit/webpack.config.serve.js

194 lines
5.3 KiB
JavaScript
Raw Normal View History

2021-01-20 16:31:34 +01:00
/*
* Development assets generation
*/
const path = require('path');
2021-02-21 11:42:04 +01:00
const filesystem = require('fs');
2021-01-20 16:31:34 +01:00
//const autoprefixer = require('autoprefixer');
const webpack = require('webpack');
const { merge } = require('webpack-merge');
2021-01-31 10:33:45 +01:00
2021-01-20 16:31:34 +01:00
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
2021-01-31 10:33:45 +01:00
const HtmlWebpackPlugin = require('html-webpack-plugin');
2021-01-20 16:31:34 +01:00
const common = require('./webpack.config.common.js');
const commonVariables = require('./webpack.configuration');
const conf = commonVariables.configuration;
const IP = process.env.IP || conf.HOSTNAME;
const PORT = process.env.PORT || conf.PORT;
const UIInfo = require('./package.json');
2021-01-31 10:57:40 +01:00
const UIVERSION = JSON.stringify(UIInfo.version);
2021-01-31 11:31:35 +01:00
const UIMetaInfo = require('./node_modules/@a2nt/meta-lightbox-react/package.json');
2021-01-20 16:31:34 +01:00
2021-01-31 10:57:40 +01:00
const NODE_ENV = 'development'; //conf.NODE_ENV || process.env.NODE_ENV;
2021-01-31 10:33:45 +01:00
const COMPRESS = NODE_ENV === 'production' ? true : false;
console.log('NODE_ENV: ' + NODE_ENV);
console.log('COMPRESS: ' + COMPRESS);
console.log('WebP images: ' + conf['webp']);
2021-02-12 18:57:33 +01:00
console.log('GRAPHQL_API_KEY: ' + conf['GRAPHQL_API_KEY']);
2021-02-21 11:42:04 +01:00
console.log('HTTPS: ' + conf['HTTPS']);
const plugins = [
new webpack.ProvidePlugin({
react: 'React',
'react-dom': 'ReactDOM',
/*$: 'jquery',
jQuery: 'jquery',*/
}),
new webpack.DefinePlugin({
UINAME: JSON.stringify(UIInfo.name),
UIVERSION: UIVERSION,
UIAUTHOR: JSON.stringify(UIInfo.author),
UIMetaNAME: JSON.stringify(UIMetaInfo.name),
UIMetaVersion: JSON.stringify(UIMetaInfo.version),
GRAPHQL_API_KEY: JSON.stringify(conf['GRAPHQL_API_KEY']),
SWVERSION: JSON.stringify(`sw-${new Date().getTime()}`),
BASE_HREF: JSON.stringify(
`http${conf['HTTPS'] ? 's' : ''}://${IP}:${PORT}`,
),
}),
//new webpack.HotModuleReplacementPlugin(),
new MiniCssExtractPlugin(),
];
const indexPath = path.join(__dirname, conf.APPDIR, conf.SRC, 'index.html');
if (filesystem.existsSync(indexPath)) {
plugins.push(
new HtmlWebpackPlugin({
publicPath: '',
template: path.join(conf.APPDIR, conf.SRC, 'index.html'),
templateParameters: {
NODE_ENV: NODE_ENV,
GRAPHQL_URL: conf['GRAPHQL_URL'],
STATIC_URL: conf['STATIC_URL'],
REACT_SCRIPTS:
NODE_ENV === 'production'
? '<script crossorigin src="https://unpkg.com/react@17/umd/react.production.min.js"></script><script crossorigin src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>'
: '<script crossorigin src="https://unpkg.com/react@17/umd/react.development.js"></script><script crossorigin src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script>',
},
}),
);
}
2021-01-31 10:33:45 +01:00
2021-01-20 16:31:34 +01:00
const config = merge(common, {
mode: 'development',
entry: {
2021-01-31 10:33:45 +01:00
/*hot: [
2021-01-20 16:31:34 +01:00
'react-hot-loader/patch',
2021-01-31 10:33:45 +01:00
'webpack-dev-server/?https://' + conf.HOSTNAME + ':' + conf.PORT,
2021-01-20 16:31:34 +01:00
'webpack/hot/only-dev-server',
2021-01-31 10:33:45 +01:00
],*/
2021-01-20 16:31:34 +01:00
},
output: {
path: path.join(__dirname),
filename: '[name].js',
// necessary for HMR to know where to load the hot update chunks
2021-02-21 11:42:04 +01:00
publicPath: `http${conf['HTTPS'] ? 's' : ''}://${conf['HOSTNAME']}:${
conf.PORT
}/`,
2021-01-20 16:31:34 +01:00
},
module: {
rules: [
{
test: /\.jsx?$/,
//exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
2021-01-31 10:33:45 +01:00
presets: [
'@babel/preset-env',
'@babel/react',
{
2021-02-12 18:57:33 +01:00
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-syntax-top-level-await',
],
2021-01-31 10:33:45 +01:00
},
], //Preset used for env setup
2021-02-12 18:57:33 +01:00
plugins: [
['@babel/transform-react-jsx'],
['@babel/plugin-syntax-top-level-await'],
],
2021-01-20 16:31:34 +01:00
cacheDirectory: true,
2021-01-31 10:33:45 +01:00
cacheCompression: true,
2021-01-20 16:31:34 +01:00
},
},
},
{
test: /\.s?css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: 'css-loader',
options: {
sourceMap: !COMPRESS,
},
},
{
loader: 'resolve-url-loader',
},
{
loader: 'sass-loader',
options: {
sourceMap: false,
},
},
],
},
{
test: /fontawesome([^.]+).(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
use: [
{
loader: 'url-loader',
},
],
},
{
test: /\.(gif|png|jpg|jpeg|ttf|otf|eot|svg|webp|woff(2)?)$/,
use: [
{
loader: 'file-loader',
options: {
name(file) {
return 'public/[path][name].[ext]';
},
},
},
],
},
],
},
2021-02-21 11:42:04 +01:00
plugins: plugins,
2021-01-20 16:31:34 +01:00
devServer: {
host: IP,
port: PORT,
2021-01-31 10:33:45 +01:00
historyApiFallback: false,
2021-02-21 11:42:04 +01:00
static: path.resolve(__dirname, conf['APPDIR'], conf['SRC']),
https: conf['HTTPS'],
hot: false,
injectClient: conf['injectClient'],
2021-02-20 07:00:59 +01:00
2021-01-20 16:31:34 +01:00
overlay: {
warnings: true,
errors: true,
},
headers: {
'Access-Control-Allow-Origin': '*',
2021-02-21 11:57:02 +01:00
'Referrer-Policy': 'unsafe-url',
2021-02-12 18:57:33 +01:00
'service-worker-allowed': '/',
2021-01-20 16:31:34 +01:00
},
},
});
module.exports = config;