ice/examples/with-store/ice.config.mts

12 lines
203 B
TypeScript

import { defineConfig } from '@ice/app';
import store from '@ice/plugin-store';
export default defineConfig(() => ({
ssg: false,
plugins: [
store({
resetPageState: true,
}),
],
}));