wisemapping-frontend/packages/mindplot/webpack.playground.js

41 lines
1.0 KiB
JavaScript
Raw Normal View History

2021-09-07 22:31:46 +02:00
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const { merge } = require('webpack-merge');
2022-01-24 20:24:16 +01:00
const common = require('./webpack.common');
2021-09-07 22:31:46 +02:00
const playgroundConfig = {
2022-01-06 03:02:55 +01:00
mode: 'development',
2021-10-05 02:38:11 +02:00
entry: {
layout: path.resolve(__dirname, './test/playground/layout/context-loader'),
2021-10-05 02:38:11 +02:00
},
output: {
path: path.resolve(__dirname, 'test/playground/dist'),
filename: '[name].js',
library: {
type: 'umd',
},
},
devServer: {
historyApiFallback: true,
port: 8083,
open: false
2021-10-05 02:38:11 +02:00
},
plugins: [
new CleanWebpackPlugin(),
new CopyPlugin({
patterns: [
{ from: 'test/playground/index.html', to: 'index.html' },
],
2021-10-05 02:38:11 +02:00
}),
new HtmlWebpackPlugin({
chunks: ['layout'],
filename: 'layout.html',
template: 'test/playground/layout/index.html',
}),
2021-10-05 02:38:11 +02:00
],
2021-09-07 22:31:46 +02:00
};
module.exports = merge(common, playgroundConfig);