diff --git a/docs/.vuepress/configs/sidebar/zh.ts b/docs/.vuepress/configs/sidebar/zh.ts
index e46b036d..252dba2b 100644
--- a/docs/.vuepress/configs/sidebar/zh.ts
+++ b/docs/.vuepress/configs/sidebar/zh.ts
@@ -23,6 +23,7 @@ export const zh: SidebarConfig = {
'/zh/guide/plugin.md',
'/zh/guide/template.md',
'/zh/guide/mock.md',
+ '/zh/guide/upgrade2.1.md',
]
},
{
diff --git a/docs/zh/guide/builder.md b/docs/zh/guide/builder.md
index d76e64df..fbe9c1e9 100644
--- a/docs/zh/guide/builder.md
+++ b/docs/zh/guide/builder.md
@@ -11,7 +11,7 @@
### 配置
-Webpack 和 Vite 构建在配置方面有一些差异,具体可以查阅[配置](../reference/config)。
+Webpack 和 Vite 构建在配置方面有一些差异,具体可以查看[配置](../reference/config)。
### 静态文件处理
@@ -20,3 +20,16 @@ Webpack 和 Vite 构建在配置方面有一些差异,具体可以查阅[配
### html 模版
Webpack 对于 html 模版是没有什么限制的,而 Vite 推荐模版文件就放在项目根目录下。Webpack 有个非常强大的 [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin),Fes.js 引入了[vite-plugin-html](https://github.com/vbenjs/vite-plugin-html) 进行能力的对齐,如果开发者想要个性化定制模版,那么在配置上还是存在差异的。
+
+## 升级 2.1.x
+
+### 不变更构建方式
+
+直接添加 Webpack 构建依赖包即可: `npm i @fesjs/build-webpack -D`。
+
+### 换成 Vite
+
+1. 安装依赖包 `npm i @fesjs/build-vite`。
+2. 将 Webpack 相关的配置换成 Vite,具体可查看[配置](../reference/config)。
+3. 将 html 模版文件从 `public/index.html` 挪到项目根目录,如果有相应的 [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) 配置,需要改成 [vite-plugin-html](https://github.com/vbenjs/vite-plugin-html) 的写法。
+4. 将 `require` 等 Vite 不支持的代码,改写成 Vite 支持的方式。
diff --git a/docs/zh/guide/template.md b/docs/zh/guide/template.md
index 1f7d85ee..d03628a4 100644
--- a/docs/zh/guide/template.md
+++ b/docs/zh/guide/template.md
@@ -1,56 +1,52 @@
# HTML 模板
-Fes.js 基于 [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) 实现的模板功能,默认模板内容是:
+Fes.js 默认模板内容是:
+
```html
-
-
-
-
- <%= htmlWebpackPlugin.options.title %>
-
-
-
-
+
+
+
+
+ <%= title %>
+
+
+
+
```
-## 自定义模板
-在 `src/public` 文件夹中创建`index.html`,Fes.js 约定如果这个文件存在,则会替换默认模板。
+## 修改页面标题
-## 模板配置
-在配置文件(`.fes.js`)中配置 `html`,把[配置](https://github.com/jantimon/html-webpack-plugin#options)的对象作为参数传入 `html-webpack-plugin` 实例。
-
-举个 :chestnut: :
```js
+// .fes.js
export default {
- html: {
- title: '海贼王'
- }
-}
+ title: '这是页面标题',
+};
```
-页面的标题会设置成'海贼王'。
+
+页面的标题会设置成 `这是页面标题`。
## 模板变量
-当然我们也可以手动编写模板,在模板中添加`link`、`link`、`meta`等标签。在我们手动配置模板时,有时候需要用到一些环境变量,模板里可以获取到的变量如下:
-- **htmlWebpackPlugin**,特定于此插件的数据
-- **webpackConfig**,用于此编译的webpack配置。例如,它可用于获取publicPath(webpackConfig.output.publicPath)。
-- **compilation**,webpack编译对象。例如,可以使用它来获取已处理资产的内容,并将其直接内联到页面中compilation.assets[...].source()
+模版中可以使用的变量:
+
+- `NODE_ENV`: Node.js 环境变量
+- `FES_ENV`: Fes.js 环境变量
+- `BASE_URL`: publicPath
+- `.env.**`: 文件中以 `FES_APP_` 开头的变量
举个 🌰 :
-```html
-
+
+```env
+# .env
+FES_APP_HELLO_WORLD=hello world
```
-除上述 `html-webpack-plugin` 插件提供的变量外,Fes.js 还把 `process.env` 中的环境变量添加到模板作用域内:
-- `NODE_ENV`
-- `FES_ENV`
-- `.env` 文件中以 `FES_APP_` 开头的变量
-
-举个 🌰 :
-
```html
-
-```
\ No newline at end of file
+
+
+ <%= FES_APP_HELLO_WORLD %>
+
+```
diff --git a/docs/zh/guide/upgrade2.1.md b/docs/zh/guide/upgrade2.1.md
new file mode 100644
index 00000000..5c3e3995
--- /dev/null
+++ b/docs/zh/guide/upgrade2.1.md
@@ -0,0 +1,22 @@
+# 从 2.0.x 迁移到 2.1.x
+
+## 版本 2.1.x 的 break
+
+1. 编译时的 [base](../reference/config/#base) 配置,移到了 [router.base](../reference/config/#router) 下
+
+## 相关插件
+
+由于需要兼容 Vite 的写法,插件也做了相关代码调整,
+
+## 不变更构建方式
+
+1. 添加 Webpack 构建依赖包: `npm i @fesjs/build-webpack -D`。
+2. 如果有,将 `public/index.html` 文件挪到项目根目录,移除 [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) 相关配置,具体模版变量使用请查看[HTML 模版](../guide/template.html)。
+
+## 换成 Vite
+
+1. 安装依赖包 `npm i @fesjs/build-vite`。
+2. 将 Webpack 相关的配置换成 Vite,具体可查看[配置](../reference/config)。
+3. 将 html 模版文件从 `public/index.html` 挪到项目根目录,如果有相应的 [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) 配置,需要改成 [vite-plugin-html](https://github.com/vbenjs/vite-plugin-html) 的写法。
+4. 将 `require` 等 Vite 不支持的代码,改写成 Vite 支持的方式。
+5. 由于需要兼容 Vite 写法,相关插件也做了相关调整,因此依赖的插件都需要升级最新的版本。如果用了 [@fesjs/plugin-sass](../reference/plugin/plugins/sass.html) 插件,直接移除,手动安装 `sass` 依赖即可。
diff --git a/docs/zh/reference/config/README.md b/docs/zh/reference/config/README.md
index 7fed58e7..92d59d28 100644
--- a/docs/zh/reference/config/README.md
+++ b/docs/zh/reference/config/README.md
@@ -213,7 +213,7 @@ export default {
### router
- 类型: `object`
-- 默认值: `{ mode: 'hash' }`
+- 默认值: `{ mode: 'hash', base: '/' }`
- 详情:
配置路由,具体请查看指南中关于路由的介绍
@@ -282,6 +282,13 @@ const defaultTerserOptions = {
配置 [压缩器 terser 的配置项](https://github.com/terser/terser#minify-options)
+### title
+
+- 类型: `string`
+- 详情:
+
+ html 页面标题
+
## webpack 专属配置
### analyze
diff --git a/packages/fes-build-vite/src/commands/dev/index.js b/packages/fes-build-vite/src/commands/dev/index.js
index d1efea0a..1f4be423 100644
--- a/packages/fes-build-vite/src/commands/dev/index.js
+++ b/packages/fes-build-vite/src/commands/dev/index.js
@@ -1,12 +1,6 @@
import { createServer } from 'vite';
import getDevConfig from './getDevConfig';
-/**
- * TODO
- *
- * 共享 webpack 和 vite 的部分配置,降低熟悉 vite 的成本
- */
-
export default (api) => {
const {
paths,
diff --git a/packages/fes-build-vite/src/common/getConfig.js b/packages/fes-build-vite/src/common/getConfig.js
index 455dda34..f357e928 100644
--- a/packages/fes-build-vite/src/common/getConfig.js
+++ b/packages/fes-build-vite/src/common/getConfig.js
@@ -28,6 +28,7 @@ export function getInnerCommonConfig(api) {
inject: {
data: {
...resolveRuntimeEnv(publicPath),
+ title: api.config.title || 'Fes.js',
mountElementId: api.config.mountElementId,
},
},
diff --git a/packages/fes-build-webpack/src/plugins/commands/webpackConfig/html.js b/packages/fes-build-webpack/src/plugins/commands/webpackConfig/html.js
index 748019cb..8c8d45ec 100644
--- a/packages/fes-build-webpack/src/plugins/commands/webpackConfig/html.js
+++ b/packages/fes-build-webpack/src/plugins/commands/webpackConfig/html.js
@@ -4,11 +4,13 @@ import { winPath, resolveRuntimeEnv } from '@fesjs/utils';
export default async function createHtmlWebpackConfig({ api, cwd, config, webpackConfig, headScripts, isProd, publicPath }) {
const htmlOptions = {
- title: 'fes.js',
filename: '[name].html',
...config.html,
- templateParameters: resolveRuntimeEnv(publicPath),
- mountElementId: config.mountElementId,
+ templateParameters: {
+ title: config.html?.title || api.config.title || 'Fes.js',
+ ...resolveRuntimeEnv(publicPath),
+ mountElementId: config.mountElementId,
+ },
};
if (isProd) {
@@ -24,7 +26,7 @@ export default async function createHtmlWebpackConfig({ api, cwd, config, webpac
});
}
- const htmlPath = join(cwd, 'public/index.html');
+ const htmlPath = join(cwd, 'index.html');
const defaultHtmlPath = resolve(__dirname, 'index-default.html');
const publicCopyIgnore = [];
@@ -45,10 +47,12 @@ export default async function createHtmlWebpackConfig({ api, cwd, config, webpac
if (_fileName !== 'index.html') {
const _htmlOptions = {
...config.html,
- title: route?.meta?.title || config.html.title || 'fes.js',
filename: _fileName,
- templateParameters: resolveRuntimeEnv(publicPath),
- mountElementId: config.mountElementId,
+ templateParameters: {
+ title: route?.meta?.title || config.html.title || api.config.title || 'fes.js',
+ ...resolveRuntimeEnv(publicPath),
+ mountElementId: config.mountElementId,
+ },
};
webpackConfig.plugin(_fileName).use(require.resolve('html-webpack-plugin'), [_htmlOptions]);
}
diff --git a/packages/fes-build-webpack/src/plugins/commands/webpackConfig/index-default.html b/packages/fes-build-webpack/src/plugins/commands/webpackConfig/index-default.html
index cdbba45c..03ea283f 100644
--- a/packages/fes-build-webpack/src/plugins/commands/webpackConfig/index-default.html
+++ b/packages/fes-build-webpack/src/plugins/commands/webpackConfig/index-default.html
@@ -6,12 +6,12 @@
- <%= htmlWebpackPlugin.options.title %>
+ <%= title %>
-
+