We export the app in the out folder. This is a static export, so our app can be deployed and hosted on any web server that can serve HTML/CSS/JS static assets.
10 lines
255 B
JavaScript
10 lines
255 B
JavaScript
module.exports = {
|
|
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
|
|
rules: {
|
|
'custom-property-pattern': null,
|
|
'selector-class-pattern': null,
|
|
'no-descending-specificity': null,
|
|
},
|
|
ignoreFiles: ['out/**/*'],
|
|
};
|