mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-22 20:37:20 +00:00

* Pre-construct frontend index.html * Only preload things that matter * Fix entry point in dev mode * Template Service worker url * Update referenced service worker
9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
var path = require('path');
|
|
|
|
module.exports = {
|
|
polymer_dir: path.resolve(__dirname, '..'),
|
|
build_dir: path.resolve(__dirname, '../build'),
|
|
output: path.resolve(__dirname, '../hass_frontend'),
|
|
output_es5: path.resolve(__dirname, '../hass_frontend_es5'),
|
|
};
|