mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
911 B
34 lines
911 B
const webpack = require('webpack'),
|
|
webpackMerge = require('webpack-merge'),
|
|
commonConfig = require('./webpack.config.js'),
|
|
helpers = require('./helpers');
|
|
|
|
const plugins = {
|
|
HtmlWebpackPlugin: require('html-webpack-plugin')
|
|
};
|
|
|
|
module.exports = webpackMerge(commonConfig, {
|
|
/**
|
|
* The entry point for the bundle
|
|
* Our Angular.js app
|
|
*
|
|
* See: https://webpack.js.org/configuration/entry-context/
|
|
*/
|
|
entry: {
|
|
'shims': './app/shims.ts',
|
|
'app': './app/app.ts'
|
|
},
|
|
|
|
plugins: [
|
|
new plugins.HtmlWebpackPlugin({
|
|
hash: true,
|
|
chunks: ['shims', 'app'],
|
|
chunksSortMode: 'manual',
|
|
template: 'wwwroot/index.html'
|
|
}),
|
|
|
|
new plugins.HtmlWebpackPlugin({
|
|
template: 'wwwroot/theme.html', hash: true, chunksSortMode: 'none', filename: 'theme.html'
|
|
})
|
|
]
|
|
});
|