4 Commits

3 changed files with 15 additions and 3 deletions

View File

@@ -1,6 +1,12 @@
# 更新日志
## V3.1.0
## [3.1.1] - 2024-09-08
### Fixed
- `配置文件` 解决打包异常。
## [3.1.0] - 2024-09-08
### Added
@@ -11,6 +17,6 @@
- `功能` 修改页面跳转方式,支持返回。
## V3.0.0
## [3.0.0] - 2024-09-01
重构新版本,支持“搜索”功能和“网址导航”功能。

View File

@@ -1,7 +1,7 @@
{
"name": "frost-navigation",
"description": "Frost Navigation",
"version": "3.1.0",
"version": "3.1.1",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -14,9 +14,15 @@ export default defineConfig({
build: {
assetsInlineLimit: 0,
},
esbuild: {
supported: {
bigint: true,
},
},
envPrefix: 'V_ENV_',
plugins: [
legacy({
polyfills: false,
renderLegacyChunks: true,
renderModernChunks: true,
targets: ['defaults', 'not IE 11'],