mirror of
https://github.com/YMFE/yapi.git
synced 2025-04-06 15:00:26 +08:00
feat: use less
This commit is contained in:
parent
37e4d469f8
commit
a695302118
@ -4,6 +4,7 @@ import App from './Application'
|
||||
import { Provider } from 'react-redux'
|
||||
import createStore from './reducer/create';
|
||||
import { DevTools } from './containers';
|
||||
import './styles/theme.less'
|
||||
|
||||
const store = createStore();
|
||||
|
||||
|
4
client/styles/theme.less
Normal file
4
client/styles/theme.less
Normal file
@ -0,0 +1,4 @@
|
||||
@import '~antd/dist/antd.less';
|
||||
|
||||
|
||||
@primary-color : blue;
|
@ -65,6 +65,8 @@
|
||||
"koa-static": "^3.0.0",
|
||||
"koa-views": "^5.2.0",
|
||||
"koa-websocket": "^4.0.0",
|
||||
"less": "^2.7.2",
|
||||
"less-loader": "^4.0.5",
|
||||
"mock": "^0.1.1",
|
||||
"mockjs": "^1.0.1-beta3",
|
||||
"moment": "^2.18.1",
|
||||
|
46
ykit.js
46
ykit.js
@ -9,22 +9,22 @@ var assetsPluginInstance = new AssetsPlugin({
|
||||
|
||||
function handleCommonsChunk(webpackConfig) {
|
||||
var commonsChunk = {
|
||||
//filename: 'scripts/[name]@[chunkhash][ext]',
|
||||
vendors: {
|
||||
lib: ['react', 'redux',
|
||||
'redux-thunk',
|
||||
'react-dom',
|
||||
'redux-promise',
|
||||
'react-router-dom',
|
||||
'prop-types'
|
||||
//filename: 'scripts/[name]@[chunkhash][ext]',
|
||||
vendors: {
|
||||
lib: ['react', 'redux',
|
||||
'redux-thunk',
|
||||
'react-dom',
|
||||
'redux-promise',
|
||||
'react-router-dom',
|
||||
'prop-types'
|
||||
|
||||
],
|
||||
lib2: [
|
||||
'axios',
|
||||
'moment'
|
||||
]
|
||||
}
|
||||
},
|
||||
],
|
||||
lib2: [
|
||||
'axios',
|
||||
'moment'
|
||||
]
|
||||
}
|
||||
},
|
||||
chunks = [],
|
||||
filenameTpl = webpackConfig.output[this.env],
|
||||
vendors;
|
||||
@ -78,7 +78,7 @@ module.exports = {
|
||||
"regenerator": true
|
||||
}]);
|
||||
defaultQuery.plugins.push('transform-decorators-legacy');
|
||||
defaultQuery.plugins.push(["import", { libraryName: "antd", style: "css" }])
|
||||
// defaultQuery.plugins.push(["import", { libraryName: "antd", style: "css" }])
|
||||
return defaultQuery;
|
||||
}
|
||||
}
|
||||
@ -102,8 +102,8 @@ module.exports = {
|
||||
ENV_PARAMS = { development: false };
|
||||
break;
|
||||
default:
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
baseConfig.plugins.push(new this.webpack.DefinePlugin({
|
||||
ENV_PARAMS: JSON.stringify(ENV_PARAMS)
|
||||
}))
|
||||
@ -117,7 +117,15 @@ module.exports = {
|
||||
|
||||
//commonsChunk
|
||||
handleCommonsChunk.call(this, baseConfig)
|
||||
|
||||
baseConfig.module.loaders.push({
|
||||
test: /\.less$/,
|
||||
loader: ykit.ExtractTextPlugin.extract(
|
||||
require.resolve('style-loader'),
|
||||
require.resolve('css-loader')
|
||||
+ '?sourceMap!'
|
||||
+ require.resolve('less-loader') + '?sourceMap'
|
||||
)
|
||||
})
|
||||
baseConfig.module.loaders.push({
|
||||
test: /\.(sass|scss)$/,
|
||||
loader: ykit.ExtractTextPlugin.extract(
|
||||
|
Loading…
x
Reference in New Issue
Block a user