mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-26 06:17:20 +00:00
14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
const { createDemoConfig } = require("../build-scripts/webpack.js");
|
|
|
|
// This file exists because we haven't migrated the stats script yet
|
|
|
|
const isProdBuild = process.env.NODE_ENV === "production";
|
|
const isStatsBuild = process.env.STATS === "1";
|
|
const latestBuild = false;
|
|
|
|
module.exports = createDemoConfig({
|
|
isProdBuild,
|
|
isStatsBuild,
|
|
latestBuild,
|
|
});
|