aboutsummaryrefslogtreecommitdiff
path: root/ui/angular.json
diff options
context:
space:
mode:
authorJames Woglom <j@wogloms.net>2022-08-29 21:11:25 -0400
committerJames Woglom <j@wogloms.net>2022-08-29 21:11:25 -0400
commit67be71cdeb3c7b33a8397d4cf91ab74075749063 (patch)
tree68f9898a558688983e30b74046b628f9be25eed6 /ui/angular.json
parentpass custom_directories from server to client (diff)
downloadmetube-67be71cdeb3c7b33a8397d4cf91ab74075749063.tar.gz
metube-67be71cdeb3c7b33a8397d4cf91ab74075749063.tar.bz2
metube-67be71cdeb3c7b33a8397d4cf91ab74075749063.zip
load selectize
Diffstat (limited to 'ui/angular.json')
-rw-r--r--ui/angular.json11
1 files changed, 10 insertions, 1 deletions
diff --git a/ui/angular.json b/ui/angular.json
index 5639d48..3c9a781 100644
--- a/ui/angular.json
+++ b/ui/angular.json
@@ -30,7 +30,16 @@
"styles": [
"src/styles.sass"
],
- "scripts": []
+ "stylePreprocessorOptions": {
+ "includePaths": [
+ "node_modules/@selectize/selectize/dist/scss/selectize.bootstrap5.scss"
+ ]
+ },
+ "scripts": [
+ "node_modules/jquery/dist/jquery.min.js",
+ "node_modules/bootstrap/dist/js/bootstrap.min.js",
+ "node_modules/@selectize/selectize/dist/js/standalone/selectize.min.js"
+ ]
},
"configurations": {
"production": {
bgstack15