redash/webpack.config.js

244 lines
6.1 KiB
JavaScript
Raw Normal View History

2016-10-30 09:29:51 +00:00
/* eslint-disable */
const fs = require("fs");
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const WebpackBuildNotifierPlugin = require("webpack-build-notifier");
const ManifestPlugin = require("webpack-manifest-plugin");
2018-10-18 18:21:47 +00:00
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CopyWebpackPlugin = require("copy-webpack-plugin");
const LessPluginAutoPrefix = require("less-plugin-autoprefix");
2018-07-17 10:47:43 +00:00
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin;
const path = require("path");
2016-10-30 09:29:51 +00:00
const isProduction = process.env.NODE_ENV === "production";
const redashBackend = process.env.REDASH_BACKEND || "http://localhost:5000";
2016-10-30 09:29:51 +00:00
const basePath = path.join(__dirname, "client");
const appPath = path.join(__dirname, "client", "app");
const extensionsRelativePath = process.env.EXTENSIONS_DIRECTORY ||
path.join("client", "app", "extensions");
const extensionPath = path.join(__dirname, extensionsRelativePath);
2017-11-16 11:04:59 +00:00
const config = {
mode: isProduction ? "production" : "development",
2016-10-30 09:29:51 +00:00
entry: {
app: [
"./client/app/index.js",
"./client/app/assets/less/main.less",
"./client/app/assets/less/ant.less"
],
server: ["./client/app/assets/less/server.less"]
2016-10-30 09:29:51 +00:00
},
output: {
path: path.join(basePath, "./dist"),
filename: isProduction ? "[name].[chunkhash].js" : "[name].js",
publicPath: "/static/"
2016-10-30 09:29:51 +00:00
},
resolve: {
symlinks: false,
2018-10-03 19:25:19 +00:00
extensions: ['.js', '.jsx'],
alias: {
"@": appPath,
"extensions": extensionPath
},
},
2016-10-30 09:29:51 +00:00
plugins: [
new WebpackBuildNotifierPlugin({ title: "Redash" }),
// Enforce angular to use jQuery instead of jqLite
new webpack.ProvidePlugin({ "window.jQuery": "jquery" }),
// bundle only default `moment` locale (`en`)
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /en/),
2016-10-30 09:29:51 +00:00
new HtmlWebpackPlugin({
template: "./client/app/index.html",
filename: "index.html",
excludeChunks: ["server"]
2016-10-30 09:29:51 +00:00
}),
new HtmlWebpackPlugin({
template: "./client/app/multi_org.html",
filename: "multi_org.html",
excludeChunks: ["server"]
}),
2018-10-18 18:21:47 +00:00
new MiniCssExtractPlugin({
filename: "[name].[chunkhash].css"
2018-02-07 12:15:21 +00:00
}),
new ManifestPlugin({
2018-10-18 18:21:47 +00:00
fileName: "asset-manifest.json",
publicPath: "",
}),
new CopyWebpackPlugin([
{ from: "client/app/assets/robots.txt" },
{ from: "client/app/unsupported.html" },
{ from: "client/app/unsupportedRedirect.js" },
2018-05-03 06:38:13 +00:00
{ from: "client/app/assets/css/*.css", to: "styles/", flatten: true },
{ from: "node_modules/jquery/dist/jquery.min.js", to: "js/jquery.min.js" },
{ from: "client/app/assets/fonts", to: "fonts/" },
])
2016-10-30 09:29:51 +00:00
],
2018-10-18 18:21:47 +00:00
optimization: {
splitChunks: {
chunks: (chunk) => {
return chunk.name != "server";
}
}
},
2016-10-30 09:29:51 +00:00
module: {
2017-06-18 20:45:43 +00:00
rules: [
{
2018-07-17 10:47:43 +00:00
test: /\.jsx?$/,
2017-06-18 20:45:43 +00:00
exclude: /node_modules/,
use: ["babel-loader", "eslint-loader"]
2017-06-18 20:45:43 +00:00
},
{
test: /\.html$/,
exclude: [/node_modules/, /index\.html/],
use: [
{
loader: "raw-loader"
}
]
2017-06-18 20:45:43 +00:00
},
{
test: /\.css$/,
2018-10-18 18:21:47 +00:00
use: [
{
loader: MiniCssExtractPlugin.loader
},
{
loader: "css-loader",
options: {
minimize: process.env.NODE_ENV === "production"
}
2017-06-18 21:11:00 +00:00
}
2018-10-18 18:21:47 +00:00
]
2017-06-18 20:45:43 +00:00
},
2017-11-07 08:41:29 +00:00
{
test: /\.less$/,
2018-10-18 18:21:47 +00:00
use: [
{
loader: MiniCssExtractPlugin.loader
},
2017-11-07 08:41:29 +00:00
{
loader: "css-loader",
2017-11-07 08:41:29 +00:00
options: {
minimize: process.env.NODE_ENV === "production"
2017-11-07 08:41:29 +00:00
}
},
{
loader: "less-loader",
2017-11-07 08:41:29 +00:00
options: {
2018-07-17 10:47:43 +00:00
plugins: [
new LessPluginAutoPrefix({ browsers: ["last 3 versions"] })
2019-03-10 11:35:27 +00:00
],
javascriptEnabled: true
2017-11-07 08:41:29 +00:00
}
}
2018-10-18 18:21:47 +00:00
]
2017-11-07 08:41:29 +00:00
},
2016-10-30 09:29:51 +00:00
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
use: [
{
loader: "file-loader",
options: {
context: path.resolve(appPath, "./assets/images/"),
outputPath: "images/",
name: "[path][name].[ext]"
}
2017-06-18 20:45:43 +00:00
}
]
2016-10-30 09:29:51 +00:00
},
{
test: /\.geo\.json$/,
2018-10-18 18:21:47 +00:00
type: 'javascript/auto',
use: [
{
loader: "file-loader",
options: {
outputPath: "data/",
name: "[hash:7].[name].[ext]"
}
}
]
},
2016-10-30 09:29:51 +00:00
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
use: [
{
loader: "url-loader",
options: {
limit: 10000,
name: "fonts/[name].[hash:7].[ext]"
}
2017-06-18 20:45:43 +00:00
}
]
2016-10-30 09:29:51 +00:00
}
]
},
devtool: isProduction ? "source-map" : "cheap-eval-module-source-map",
stats: {
children: false,
modules: false,
chunkModules: false
},
2018-03-10 08:48:11 +00:00
watchOptions: {
ignored: /\.sw.$/
2018-03-10 08:48:11 +00:00
},
2016-10-30 09:29:51 +00:00
devServer: {
inline: true,
index: "/static/index.html",
historyApiFallback: {
index: "/static/index.html",
rewrites: [{ from: /./, to: "/static/index.html" }]
},
contentBase: false,
publicPath: "/static/",
proxy: [
{
2018-07-17 10:47:43 +00:00
context: [
"/login",
"/logout",
"/invite",
"/setup",
"/status.json",
"/api",
"/oauth"
],
target: redashBackend + "/",
changeOrigin: false,
secure: false
},
{
context: path => {
// CSS/JS for server-rendered pages should be served from backend
return /^\/static\/[a-z]+\.[0-9a-fA-F]+\.(css|js)$/.test(path);
},
target: redashBackend + "/",
changeOrigin: true,
secure: false
}
],
stats: {
modules: false,
chunkModules: false
}
},
performance: {
hints: false
2016-10-30 09:29:51 +00:00
}
};
if (process.env.DEV_SERVER_HOST) {
config.devServer.host = process.env.DEV_SERVER_HOST;
}
2018-03-22 15:23:49 +00:00
if (process.env.BUNDLE_ANALYZER) {
config.plugins.push(new BundleAnalyzerPlugin());
}
2016-10-30 09:29:51 +00:00
module.exports = config;