mirror of https://github.com/alibaba/ice.git
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
|
import { defineConfig } from '@ice/app';
|
||
|
import icestark from '@ice/plugin-icestark';
|
||
|
|
||
|
export default defineConfig(() => ({
|
||
|
plugins: [
|
||
|
icestark({
|
||
|
type: 'child',
|
||
|
}),
|
||
|
]
|
||
|
}));
|