mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
feat: 模版换成默认中文
This commit is contained in:
parent
2b7aef1ea1
commit
7c079bcab8
@ -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": {
|
||||||
|
@ -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: {
|
||||||
|
@ -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": {
|
||||||
|
27
packages/fes-template/webpack.config.js
Normal file
27
packages/fes-template/webpack.config.js
Normal 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 {};
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user