Skip to content

Instantly share code, notes, and snippets.

/**
* 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';
/* eslint-disable */
import Vue from "vue";
import VueCompositionAPI, {
computed,
onBeforeMount,
reactive,
toRefs,
} from "@vue/composition-api";
import { useVideoPlayer } from "../../../helpers/videoPlayer/videoPlayerFunctions";
@martinherweg
martinherweg / input.scss
Created March 18, 2022 12:07
Generated by SassMeister.com.
@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}')
}
@martinherweg
martinherweg / input.scss
Created March 18, 2022 12:23
Generated by SassMeister.com.
@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' {