1.1.1 • Published 2 years ago
@ice/plugin-icestark v1.1.1
plugin-icestark
Usage
Install
npm i -D @ice/plugin-icestark
Framework Application
Configurate plugin to your ice.config.mts
:
import { defineConfig } from '@ice/app';
import icestark from '@ice/plugin-icestark';
export default defineConfig(() => ({
plugins: [
icestark({ type: 'framework' }),
],
}));
Through export icestark
configuration of your framework application.
import { defineFrameworkConfig } from '@ice/plugin-icestark/esm/types';
export const icestark = defineFrameworkConfig(() => ({
getApps: () => ([]),
}));
Options:
getApps
: get sub-application information, support async functionappRouter
ErrorComponent
: error componentLoadingComponent
: loading componentNotFoundComponent
: 404 not found componentshouldAssetsRemove
: check assets if it should be removed
layout
: specify Framework application Layout
Sub-application
Configurate plugin to your ice.config.mts
:
import { defineConfig } from '@ice/app';
import icestark from '@ice/plugin-icestark';
export default defineConfig(() => ({
plugins: [
icestark({ type: 'child' }),
],
}));
modify icestark
exports in src/app.ts
:
// app.ts
import { defineChildConfig } from '@ice/plugin-icestark/esm/types';
export const icestark = defineChildConfig(() => ({
mount: () => {},
unmount: () => {},
}));
Options:
mount
: excute before Sub-application mountedunmount
: excute after Sub-application unmounted
1.1.1
2 years ago
1.1.1-canary-1e4b20af8-20230907064901
2 years ago
1.1.0
2 years ago
1.1.1-canary-d173faeef-20230516094838
2 years ago
1.1.0-canary-70df4e7fa-20230515074339
2 years ago
1.0.4-alpha.1
2 years ago
1.0.5-alpha.0
2 years ago
1.0.5-alpha.1
2 years ago
1.0.5
2 years ago
1.0.4
2 years ago
1.0.3
2 years ago
1.0.5-beta.1
2 years ago
1.0.5-beta.0
2 years ago
1.0.4-beta.0
2 years ago
1.0.3-beta.0
2 years ago
1.1.0-beta.0
2 years ago
1.0.2
2 years ago
1.0.2-beta.2
2 years ago
1.0.2-beta.3
2 years ago
1.0.2-beta.4
2 years ago
1.0.2-beta.1
2 years ago
1.0.1
2 years ago
1.0.1-beta.2
2 years ago
1.0.1-beta.1
2 years ago
1.0.0-beta.3
3 years ago
1.0.0-beta.2
3 years ago
1.0.0
3 years ago
1.0.0-beta.1
3 years ago