mirror of https://github.com/alibaba/ice.git
9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
|
|
import { defineConfig } from '@ice/app';
|
||
|
|
import auth from '@ice/plugin-auth';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [
|
||
|
|
auth(),
|
||
|
|
],
|
||
|
|
});
|