mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: 模版换成默认中文
This commit is contained in:
parent
2b7aef1ea1
commit
7c079bcab8
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@webank/fes-cli",
|
||||
"version": "0.1.3",
|
||||
"version": "0.1.4",
|
||||
"description": "一个好用的前端管理台快速开发框架",
|
||||
"preferGlobal": true,
|
||||
"scripts": {
|
||||
|
@ -108,7 +108,7 @@ module.exports = {
|
||||
}
|
||||
],
|
||||
i18n: {
|
||||
locale: 'en', // default zh-cn
|
||||
locale: 'zh-cn', // default zh-cn
|
||||
messages: {
|
||||
'zh-cn': {
|
||||
menu: {
|
||||
|
@ -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": {
|
||||
|
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