How can I change layout theme #6471
Answered
by
shadowgxq
chenxiaofie
asked this question in
Q&A
-
I want to change some input field value, but i not find this |
Beta Was this translation helpful? Give feedback.
Answered by
shadowgxq
Apr 17, 2023
Replies: 1 comment
-
sir, see here
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chenxiaofie
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sir, see here
you can config in your webpack config:
// webpack.config.js
module.exports = {
rules: [{
test: /.less$/,
use: [{
loader: 'style-loader',
}, {
loader: 'css-loader', // translates CSS into CommonJS
}, {
loader: 'less-loader', // compiles Less to CSS
// ...other rules
}],
// ...other config
}