mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
5968becf59
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
19 lines
323 B
Stylus
19 lines
323 B
Stylus
@import './nested/nested'
|
|
|
|
$color ?= blue
|
|
|
|
.stylus
|
|
color $color
|
|
|
|
.stylus-additional-data
|
|
/* injected via vite.config.js */
|
|
color $injectedColor
|
|
|
|
.stylus-options-define-var
|
|
/* defined in vite.config.js */
|
|
color $definedColor
|
|
|
|
.stylus-options-define-func
|
|
/* defined in vite.config.js */
|
|
color definedFunction()
|