Skip to content

Commit

Permalink
1.1.01 analytics (#31)
Browse files Browse the repository at this point in the history
* fix version (#25)

* fix version

* fix micromatch

* upgrade express

* Try Plausible Analytics

* try for beta

* add betaProd logic

* fix modenv
  • Loading branch information
fouille authored Sep 23, 2024
1 parent 830b1c2 commit eb45440
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ const WebpackAutoInject = require('webpack-auto-inject-version-next');
const miniSVGDataURI = require('mini-svg-data-uri');

const isProduction = process.env.NODE_ENV == 'production';
const titleHTML = (isProduction == "production") ? "Wizard Configuration" : "BETA Wizard Configuration";
const PlausState = (isProduction == "production") ? "" : "beta--";
const titleHTML = (process.env.NODE_ENV == "production") ? "Wizard Configuration" : "BETA Wizard Configuration";
const PlausState = (process.env.NODE_ENV == "production") ? "" : "beta--";

const stylesHandler = isProduction ? MiniCssExtractPlugin.loader : 'style-loader';



const config = {
performance: {
maxAssetSize: 10000000,
Expand Down

0 comments on commit eb45440

Please sign in to comment.