mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
feat: 优化 windicss 配置 (#104)
Co-authored-by: joyzhan <joyzhan@webank.com>
This commit is contained in:
parent
d8f327ab44
commit
a37c4bc37c
@ -1,6 +1,5 @@
|
|||||||
|
|
||||||
import WindiCSSWebpackPlugin from 'windicss-webpack-plugin';
|
import WindiCSSWebpackPlugin from 'windicss-webpack-plugin';
|
||||||
import { resolve } from 'path';
|
|
||||||
|
|
||||||
export default (api) => {
|
export default (api) => {
|
||||||
api.describe({
|
api.describe({
|
||||||
@ -16,10 +15,19 @@ export default (api) => {
|
|||||||
api.addEntryImportsAhead(() => [{ source: 'windi-base.css' }, { source: 'windi-components.css' }, { source: 'windi-utilities.css' }]);
|
api.addEntryImportsAhead(() => [{ source: 'windi-base.css' }, { source: 'windi-components.css' }, { source: 'windi-utilities.css' }]);
|
||||||
|
|
||||||
api.chainWebpack((memo, { createCSSRule }) => {
|
api.chainWebpack((memo, { createCSSRule }) => {
|
||||||
|
const { config, ...otherOption } = api.config.windicss;
|
||||||
memo.plugin('windicss').use(WindiCSSWebpackPlugin, [
|
memo.plugin('windicss').use(WindiCSSWebpackPlugin, [
|
||||||
{
|
{
|
||||||
config: resolve(__dirname, '../windi.config.js'),
|
config: {
|
||||||
...api.config.windicss
|
extract: {
|
||||||
|
// A common use case is scanning files from the root directory
|
||||||
|
include: ['**/*.{vue,jsx,js,ts,tsx}'],
|
||||||
|
// if you are excluding files, make sure you always include node_modules and .git
|
||||||
|
exclude: ['node_modules', '.git', 'dist']
|
||||||
|
},
|
||||||
|
...config
|
||||||
|
},
|
||||||
|
...otherOption
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
if (api.env === 'development') {
|
if (api.env === 'development') {
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
export default {
|
|
||||||
extract: {
|
|
||||||
// A common use case is scanning files from the root directory
|
|
||||||
include: ['**/*.{vue,jsx,js,ts,tsx}'],
|
|
||||||
// if you are excluding files, make sure you always include node_modules and .git
|
|
||||||
exclude: ['node_modules', '.git', 'dist']
|
|
||||||
}
|
|
||||||
};
|
|
@ -34,5 +34,16 @@ export default {
|
|||||||
],
|
],
|
||||||
devServer: {
|
devServer: {
|
||||||
port: 8000
|
port: 8000
|
||||||
|
},
|
||||||
|
windicss: {
|
||||||
|
config: {
|
||||||
|
theme: {
|
||||||
|
extend: {
|
||||||
|
colors: {
|
||||||
|
green: '#7cb305'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="onepiece m-10px">
|
<div class="onepiece m-10px text-green">
|
||||||
fes h5 & 拉夫德鲁<br />
|
fes h5 & 拉夫德鲁<br />
|
||||||
<fes-icon :spin="true" class="one-icon" type="smile" @click="clickIcon" />
|
<fes-icon :spin="true" class="one-icon" type="smile" @click="clickIcon" />
|
||||||
<HelloWorld />
|
<HelloWorld />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user