merge with old webpack.conf from admin
This commit is contained in:
@@ -13,7 +13,8 @@ const TEMPLATE_FILE = path.resolve(APP_PATH, 'index.html');
|
|||||||
|
|
||||||
const BUILD_PATH = path.resolve(ROOT_PATH, './static');
|
const BUILD_PATH = path.resolve(ROOT_PATH, './static');
|
||||||
|
|
||||||
const staticFiles = {
|
const staticFiles = [
|
||||||
|
{
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
entry: {
|
entry: {
|
||||||
app: ENTRY_FILE,
|
app: ENTRY_FILE,
|
||||||
@@ -133,7 +134,50 @@ const staticFiles = {
|
|||||||
'@': APP_PATH,
|
'@': APP_PATH,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
},
|
||||||
|
{
|
||||||
|
mode: 'production',
|
||||||
|
entry: path.resolve(__dirname, 'lib/FrontblockLib.js'),
|
||||||
|
output: {
|
||||||
|
path: path.resolve(__dirname, 'static'),
|
||||||
|
filename: 'FrontblockLib.js',
|
||||||
|
},
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{ test: /\FrontblockLib.ts/, use: 'ts-loader' }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
optimization: {
|
||||||
|
minimizer: [new TerserPlugin({
|
||||||
|
cache: true,
|
||||||
|
parallel: true,
|
||||||
|
terserOptions:{
|
||||||
|
mangle: false,
|
||||||
|
keep_classnames: true
|
||||||
|
}
|
||||||
|
})],
|
||||||
|
splitChunks: {
|
||||||
|
cacheGroups: {
|
||||||
|
common: {
|
||||||
|
chunks: 'all',
|
||||||
|
minChunks: 2,
|
||||||
|
maxInitialRequests: 5,
|
||||||
|
minSize: 0,
|
||||||
|
name: 'common'
|
||||||
|
},
|
||||||
|
vendor: {
|
||||||
|
test: /node_modules/,
|
||||||
|
chunks: 'all',
|
||||||
|
name: 'vendor',
|
||||||
|
priority: 10,
|
||||||
|
enforce: true,
|
||||||
|
minChunks: 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
const plugin = {
|
const plugin = {
|
||||||
target: "node",
|
target: "node",
|
||||||
|
|||||||
Reference in New Issue
Block a user