In my case, fixing the css import resolved both errors.
export default defineConfig(() => ({
// ...
resolve: {
alias: [
{
find: 'od-defaults.scss',
replacement: 'the actual path to the resource'
},
],
},
}));