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 ### Added
@@ -11,6 +17,6 @@
- `功能` 修改页面跳转方式,支持返回。 - `功能` 修改页面跳转方式,支持返回。
## V3.0.0 ## [3.0.0] - 2024-09-01
重构新版本,支持“搜索”功能和“网址导航”功能。 重构新版本,支持“搜索”功能和“网址导航”功能。

View File

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

View File

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