feat: 模版换成默认中文

This commit is contained in:
bac-joker 2020-09-07 14:21:24 +08:00 committed by harrywan
parent 2b7aef1ea1
commit 7c079bcab8
4 changed files with 31 additions and 3 deletions

View File

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

View File

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

View File

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