feat: 模版换成默认中文

This commit is contained in:
bac-joker 2020-09-07 14:21:24 +08:00
parent f4307f718f
commit 1dc20546ef
4 changed files with 31 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@webank/fes-cli", "name": "@webank/fes-cli",
"version": "0.1.3", "version": "0.1.4",
"description": "一个好用的前端管理台快速开发框架", "description": "一个好用的前端管理台快速开发框架",
"preferGlobal": true, "preferGlobal": true,
"scripts": { "scripts": {

View File

@ -108,7 +108,7 @@ module.exports = {
} }
], ],
i18n: { i18n: {
locale: 'en', // default zh-cn locale: 'zh-cn', // default zh-cn
messages: { messages: {
'zh-cn': { 'zh-cn': {
menu: { menu: {

View File

@ -1,6 +1,6 @@
{ {
"name": "@webank/fes-template", "name": "@webank/fes-template",
"version": "0.1.2", "version": "0.1.3",
"description": "fes项目模版", "description": "fes项目模版",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@ -29,6 +29,7 @@
"author": "harrywan qlin", "author": "harrywan qlin",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"csp-html-webpack-plugin": "^4.0.0",
"@webank/eslint-config-webank": "^0.1.4" "@webank/eslint-config-webank": "^0.1.4"
}, },
"dependencies": { "dependencies": {

View File

@ -0,0 +1,27 @@
const CspHtmlWebpackPlugin = require('csp-html-webpack-plugin');
module.exports = function (mode, configs, webpack) {
if (mode === 'build') {
return {
plugins: [new CspHtmlWebpackPlugin({
'base-uri': "'self'",
'object-src': "'none'",
'script-src': [
"'self'"
],
'style-src': [
"'self'"
],
'connect-src': [
"'self'",
'http://example.com'
],
'img-src': [
'data:',
"'self'"
]
})]
};
}
return {};
};