2022-08-10 19:12:18 +08:00
|
|
|
import { defineConfig } from '@ice/app';
|
|
|
|
import fusion from '@ice/plugin-fusion';
|
2022-09-15 11:39:59 +08:00
|
|
|
import cssAssetsLocal from '@ice/plugin-css-assets-local';
|
2023-03-13 17:44:21 +08:00
|
|
|
import moment from '@ice/plugin-moment-locales';
|
2022-08-10 19:12:18 +08:00
|
|
|
|
|
|
|
export default defineConfig({
|
2022-09-15 11:39:59 +08:00
|
|
|
plugins: [
|
|
|
|
fusion({
|
|
|
|
importStyle: true,
|
|
|
|
theme: {
|
|
|
|
'primary-color': '#89d',
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
cssAssetsLocal(),
|
2023-03-13 17:44:21 +08:00
|
|
|
moment({
|
|
|
|
locales: ['af'],
|
|
|
|
}),
|
2022-09-15 11:39:59 +08:00
|
|
|
],
|
2023-04-24 10:18:53 +08:00
|
|
|
ssg: false,
|
2022-08-10 19:12:18 +08:00
|
|
|
});
|