1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Remove loading box component

This commit is contained in:
Paulus Schoutsen
2016-07-31 14:43:07 -07:00
parent 56650a25df
commit 0255537ea6
6 changed files with 33 additions and 38 deletions

View File

@@ -41,14 +41,17 @@ const panelVulcan = new Vulcanize({
stripExcludes: undefined,
});
const baseExcludes = [
'bower_components/font-roboto/roboto.html',
'bower_components/paper-styles/color.html',
];
const toProcess = [
{
source: './src/home-assistant.html',
output: './build/frontend.html',
vulcan: new Vulcanize(Object.assign({}, baseVulcanOptions, {
stripExcludes: [
'bower_components/font-roboto/roboto.html',
],
stripExcludes: baseExcludes,
})),
},
];