Reformat files with new linter
All changes should be whitespace, and were done using npm run-script
lint.
Change-Id: I943c6b435c5c872841af5affc1e89910468b5ca6
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/vue.config.js b/vue.config.js
index de0ad12..ad5fb61 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -79,9 +79,8 @@
}
if (hasCustomAppNav) {
// If env has custom AppNavigation, resolve AppNavigationMixin module in src/components/AppNavigation/AppNavigation.vue
- config.resolve.alias[
- './AppNavigationMixin$'
- ] = `@/env/components/AppNavigation/${envName}.js`;
+ config.resolve.alias['./AppNavigationMixin$'] =
+ `@/env/components/AppNavigation/${envName}.js`;
}
}
@@ -89,7 +88,7 @@
config.plugins.push(
new CompressionPlugin({
deleteOriginalAssets: true,
- })
+ }),
);
}
},