This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Webpack Config for Javascript and CSS Bundling | |
* | |
* @package generator-lilly | |
* @author Martin Herweg <[email protected]> | |
*/ | |
import webpack from 'webpack'; | |
import { getIfUtils, removeEmpty } from 'webpack-config-utils'; | |
import path from 'path'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable */ | |
import Vue from "vue"; | |
import VueCompositionAPI, { | |
computed, | |
onBeforeMount, | |
reactive, | |
toRefs, | |
} from "@vue/composition-api"; | |
import { useVideoPlayer } from "../../../helpers/videoPlayer/videoPlayerFunctions"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@use 'sass:map'; | |
$themes: ['default', 'yellow', 'purple-yellow', 'gold', 'midnight-blue', 'purple-blue']; | |
$themeIcons: (); | |
@each $theme in $themes { | |
$index: index($themes, $theme); | |
$themeIcons: map.set($themeIcons, $theme, 'theme#{$index}') | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@use 'sass:map'; | |
$themes: ['default', 'yellow', 'purple-yellow', 'gold', 'midnight-blue', 'purple-blue']; | |
$themeIcons: (); | |
@each $theme in $themes { | |
$index: index($themes, $theme); | |
@if $theme == 'default' { |
OlderNewer