1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Remove unused sass env function

This commit is contained in:
Deven Caron
2023-01-31 15:37:40 -05:00
parent 3cde7d40ee
commit e4ae03a94c
3 changed files with 2 additions and 8 deletions

View File

@@ -1,3 +1,3 @@
{
"version": 1675191438427
"version": 1675197299100
}

View File

@@ -1,8 +1,7 @@
@use "sass:math";
// ==========================================================================
// Main
// ==========================================================================
$app-env: app-env();
@use "sass:math";
// Settings
// ==========================================================================

View File

@@ -26,11 +26,6 @@ export const defaultSassOptions = {
export const developmentSassOptions = Object.assign({}, defaultSassOptions, {
outputStyle: 'expanded',
functions: {
'app-env()': function () {
return (new types.String('development'))
}
}
});
export const productionSassOptions = Object.assign({}, defaultSassOptions, {
outputStyle: 'compressed',