I created an app.config.ts file in the root (where nuxt.config.ts is):
export default defineAppConfig({
ui: {
notifications: {
// Show toasts at the top right of the screen
position: "top-0 end-0",
},
},
});
however it doesn't seem to take effect at all? I'm checking the dev tools and they remain the defaults. do I need to take additional steps to make sure that it recognizes my app config?