// Template for webpack.config.js in Fable projects // In most cases, you'll only need to edit the CONFIG object (after dependencies) // See below if you need better fine-tuning of Webpack options // Dependencies. Also required: core-js, @babel/core, // @babel/preset-env, babel-loader var path = require("path"); var webpack = require("webpack"); var HtmlWebpackPlugin = require('html-webpack-plugin'); var CopyWebpackPlugin = require('copy-webpack-plugin'); var MiniCssExtractPlugin = require("mini-css-extract-plugin"); const Dotenv = require('dotenv-webpack'); const {patchGracefulFileSystem} = require("./webpack.common.js"); patchGracefulFileSystem(); module.exports = (env, argv) => { const isProduction = argv.mode === 'production' const isDevelopment = argv.mode === 'development' console.log("Bundling for " + (isProduction ? "production" : "development") + "..."); var CONFIG = { // The tags to include the generated JS and CSS will be automatically injected in the HTML template // See https://github.com/jantimon/html-webpack-plugin indexHtmlTemplate: "./tests/index.html", fsharpEntry: "./tests/Tests.fs.js", outputDir: "./dist", assetsDir: "./public", devServerPort: 8085, // When using webpack-dev-server, you may need to redirect some calls // to a external API server. See https://webpack.js.org/configuration/dev-server/#devserver-proxy devServerProxy: undefined, // Use babel-preset-env to generate JS compatible with most-used browsers. // More info at https://babeljs.io/docs/en/next/babel-preset-env.html babel: { presets: [ // In case interop is used with React/Jsx components, this React preset would be required ["@babel/preset-react"], ["@babel/preset-env", { "targets": "> 0.25%, not dead", "modules": false, // This adds polyfills when needed. Requires core-js dependency. // See https://babeljs.io/docs/en/babel-preset-env#usebuiltins "useBuiltIns": "usage", "corejs": 3 }] ], } } // The HtmlWebpackPlugin allows us to use a template for the index.html page // and automatically injects