1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00
awx/webpack.config.js

107 lines
2.4 KiB
JavaScript
Raw Normal View History

const path = require('path');
2018-09-25 17:39:21 +03:00
const webpack = require('webpack');
const TARGET_PORT = process.env.TARGET_PORT || 8043;
const TARGET_HOST = process.env.TARGET_HOST || 'localhost';
const TARGET = `https://${TARGET_HOST}:${TARGET_PORT}`;
2018-09-25 17:39:21 +03:00
module.exports = {
entry: './src/index.jsx',
2018-09-25 17:39:21 +03:00
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'babel-loader'
2018-10-11 18:31:37 +03:00
},
{
test: /\.s?[ac]ss$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'sass-loader' },
]
},
{
test: /\.(woff(2)?|ttf|eot)(\?v=\d+\.\d+\.\d+)?$/,
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'assets/fonts/',
2018-11-16 08:13:25 +03:00
publicPath: 'assets/fonts',
includePaths: [
'node_modules/@patternfly/patternfly/assets/fonts',
]
}
}]
2018-10-11 18:31:37 +03:00
},
{
test: /\.(jpg|png|gif|svg)(\?v=\d+\.\d+\.\d+)?$/,
2018-10-11 18:31:37 +03:00
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'assets/images/',
2018-11-16 08:13:25 +03:00
publicPath: 'assets/images',
includePaths: [
'node_modules/@patternfly/patternfly/assets/images',
]
}
2018-10-11 18:31:37 +03:00
}]
2018-09-25 17:39:21 +03:00
}
]
},
resolve: {
2018-10-11 18:31:37 +03:00
extensions: ['*', '.js', '.jsx', '.css']
2018-09-25 17:39:21 +03:00
},
output: {
path: path.resolve(__dirname, '/dist'),
2018-09-25 17:39:21 +03:00
publicPath: '/',
filename: 'bundle.js'
},
plugins: [
new webpack.HotModuleReplacementPlugin()
],
devServer: {
contentBase: './dist',
hot: true,
inline: true,
stats: 'minimal',
host: '127.0.0.1',
https: true,
port: 3001,
2018-09-25 17:39:21 +03:00
clientLogLevel: 'none',
proxy: [
{
2018-09-25 17:39:21 +03:00
context: '/api/login/',
target: TARGET,
secure: false,
ws: false,
headers: {
Host: `localhost:${TARGET_PORT}`,
Origin: TARGET,
Referer: `${TARGET}/`
2018-09-25 17:39:21 +03:00
}
},
{
2018-09-25 17:39:21 +03:00
context: '/api',
target: TARGET,
secure: false,
ws: false,
bypass: req => (req.originalUrl.includes('hot-update.json') || req.originalUrl.includes('login')),
},
{
2018-09-25 17:39:21 +03:00
context: '/websocket',
target: TARGET,
secure: false,
ws: true
}
]
2018-12-10 18:16:52 +03:00
},
// https://github.com/lingui/js-lingui/issues/408
node: {
fs: 'empty'
2018-09-25 17:39:21 +03:00
}
};