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

168 lines
5.3 KiB
JavaScript
Raw Permalink Normal View History

2021-01-20 16:31:34 +01:00
/*
* Development assets generation
*/
2021-05-03 19:00:50 +02:00
const common = require('./webpack.config.common.js');
const conf = common.configuration;
2021-01-20 16:31:34 +01:00
const path = require('path');
2021-05-03 19:00:50 +02:00
const fs = require('fs');
2021-02-21 11:42:04 +01:00
2021-01-20 16:31:34 +01:00
//const autoprefixer = require('autoprefixer');
const webpack = require('webpack');
2021-08-04 01:12:53 +02:00
const {
2021-09-12 22:49:47 +02:00
merge,
2021-08-04 01:12:53 +02:00
} = require('webpack-merge');
2021-01-31 10:33:45 +01:00
2022-02-17 05:54:57 +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 IP = process.env.IP || conf.HOSTNAME;
const PORT = process.env.PORT || conf.PORT;
2021-10-28 03:12:01 +02:00
const UIInfo = require('./package.json');
const UIVERSION = JSON.stringify(UIInfo.version);
const UIMetaInfo = require('./node_modules/@a2nt/meta-lightbox-js/package.json');
const NODE_ENV = 'development'; //conf.NODE_ENV || process.env.NODE_ENV;
const COMPRESS = NODE_ENV === 'production' ? true : false;
console.log('NODE_ENV: ' + NODE_ENV);
console.log('COMPRESS: ' + COMPRESS);
console.log('WebP images: ' + conf['webp']);
console.log('GRAPHQL_API_KEY: ' + conf['GRAPHQL_API_KEY']);
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(),
];
2021-02-21 11:42:04 +01:00
const indexPath = path.join(__dirname, conf.APPDIR, conf.SRC, 'index.html');
2021-05-03 19:00:50 +02:00
if (fs.existsSync(indexPath)) {
2021-09-12 22:49:47 +02:00
plugins.push(
new HtmlWebpackPlugin({
publicPath: '',
template: path.join(conf.APPDIR, conf.SRC, 'index.html'),
templateParameters: {
2021-10-28 03:12:01 +02:00
NODE_ENV: NODE_ENV,
2021-09-12 22:49:47 +02:00
GRAPHQL_URL: conf['GRAPHQL_URL'],
STATIC_URL: conf['STATIC_URL'],
2021-10-28 03:12:01 +02:00
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-05-03 19:00:50 +02:00
},
}),
2021-09-12 22:49:47 +02:00
);
2021-02-21 11:42:04 +01:00
}
2021-01-31 10:33:45 +01:00
2021-05-03 19:00:50 +02:00
const config = merge(common.webpack, {
2021-10-28 03:12:01 +02:00
mode: 'development',
2021-05-03 19:00:50 +02:00
entry: {
2021-09-12 22:49:47 +02:00
/*hot: [
'react-hot-loader/patch',
'webpack-dev-server/?https://' + conf.HOSTNAME + ':' + conf.PORT,
'webpack/hot/only-dev-server',
],*/
2021-05-03 19:00:50 +02:00
},
output: {
path: path.join(__dirname),
filename: '[name].js',
// necessary for HMR to know where to load the hot update chunks
2021-10-28 03:12:01 +02:00
publicPath: `http${conf['HTTPS'] ? 's' : ''}://${conf['HOSTNAME']}:${
conf.PORT
}/`,
2021-09-12 22:49:47 +02:00
},
2021-05-03 19:00:50 +02:00
module: {
2021-09-12 23:19:05 +02:00
rules: [{
test: /\.(js|ts)x?$/,
2021-08-04 01:12:53 +02:00
//exclude: /node_modules/,
use: {
2021-09-12 23:19:05 +02:00
loader: 'babel-loader', //'@sucrase/webpack-loader',
2021-08-04 01:12:53 +02:00
options: {
2021-09-12 23:19:05 +02:00
//transforms: ['jsx']
presets: [
2021-08-04 01:12:53 +02:00
'@babel/preset-env',
'@babel/react',
{
plugins: [
'@babel/plugin-proposal-class-properties',
],
2021-09-12 23:19:05 +02:00
},
2021-10-28 03:12:01 +02:00
], //Preset used for env setup
2021-08-04 01:12:53 +02:00
plugins: [
2021-09-12 23:19:05 +02:00
'@babel/transform-react-jsx',
2021-10-28 03:12:01 +02:00
'@babel/plugin-transform-typescript',
2021-08-04 01:12:53 +02:00
],
cacheDirectory: true,
2021-09-12 23:19:05 +02:00
cacheCompression: true,
2021-09-12 22:49:47 +02:00
},
},
},
2021-08-04 01:12:53 +02:00
{
test: /\.s?css$/,
use: [{
2021-10-28 03:12:01 +02:00
loader: 'style-loader', //MiniCssExtractPlugin.loader,
2021-09-12 22:49:47 +02:00
},
2021-05-03 19:00:50 +02:00
{
2021-08-04 01:12:53 +02:00
loader: 'css-loader',
options: {
2021-08-09 18:42:50 +02:00
sourceMap: true,
2021-09-12 22:49:47 +02:00
},
},
2021-05-03 19:00:50 +02:00
{
2021-08-04 01:12:53 +02:00
loader: 'sass-loader',
options: {
2021-08-09 18:42:50 +02:00
sourceMap: true,
2021-09-12 22:49:47 +02:00
},
2022-02-17 05:54:57 +01:00
}, ],
2021-09-12 22:49:47 +02:00
},
2021-08-04 01:12:53 +02:00
{
test: /fontawesome([^.]+).(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
2021-09-12 22:49:47 +02:00
type: 'asset/resource',
},
2021-08-04 01:12:53 +02:00
{
test: /\.(gif|png|jpg|jpeg|ttf|otf|eot|svg|webp|woff(2)?)$/,
2021-09-12 22:49:47 +02:00
type: 'asset/resource',
2022-02-17 05:54:57 +01:00
}, ],
2021-09-12 22:49:47 +02:00
},
2021-05-03 19:00:50 +02:00
plugins: plugins,
devServer: {
host: IP,
port: PORT,
historyApiFallback: false,
static: path.resolve(__dirname, conf['APPDIR'], conf['SRC']),
https: conf['HTTPS'],
2021-10-28 03:12:01 +02:00
hot: false,
2021-05-03 19:00:50 +02:00
//injectClient: conf['injectClient'],
headers: {
'Access-Control-Allow-Origin': '*',
'Referrer-Policy': 'unsafe-url',
'service-worker-allowed': '/',
2021-09-12 22:49:47 +02:00
},
},
});
2021-01-20 16:31:34 +01:00
module.exports = config;