debian-image-builder-frontend/config/dev.webpack.config.js
sanne raymaekers f93d36b972 copy from RedHatInsights/insights-frontend-starter-app template
Copied removing unused parts, and includes some initial changes.
2020-04-15 12:46:02 +02:00

14 lines
322 B
JavaScript

const { resolve } = require('path');
const config = require('@redhat-cloud-services/frontend-components-config');
const { config: webpackConfig, plugins } = config({
rootFolder: resolve(__dirname, '../'),
debug: true,
https: false,
port: 8002,
});
module.exports = {
...webpackConfig,
plugins
};