This repository was archived by the owner on Aug 7, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 40
Support for LESS CSS
#967
Labels
Comments
I made some changes but cannot push it to repository.
Please include this patch in upcoming release or give me an access to repository. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is your feature request related to a problem? Please describe.
If you try to use
app.less
instead ofapp.css
, you will getYou may need an appropriate loader to handle this file type.
webpack compilation error.Describe the solution you'd like
We have to provide
less
loader by default (or by an additional plugin).Workaround
npm i less --save-dev
npm i less-loader --save-dev
webpack.config
:less
extention in theresolve
section:extensions: [".js", ".scss", ".less", ".css"],
less
extension in thenativescript-dev-webpack/style-hot-loader
regex:test: /\.(css|scss|less)$/,
The text was updated successfully, but these errors were encountered: