10 lines
289 B
JavaScript
10 lines
289 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
// Target directory for the build.
|
|
buildDir: path.resolve(__dirname, "build"),
|
|
nodeDir: path.resolve(__dirname, "../node_modules"),
|
|
// Path where the Hass.io frontend will be publicly available.
|
|
publicPath: "/api/hassio/app",
|
|
};
|