dayjs-module icon indicating copy to clipboard operation
dayjs-module copied to clipboard

Plugin list without extension not working anymore

Open jclaessens97 opened this issue 4 years ago • 0 comments

In relation to this issue and comment, just adding e.g. 'utc' in the list of plugins doesn't work (anymore?) when building for production:

export default {
  locales: ['en'],
  defaultLocale: 'en',
  plugins: ['utc'],
};

This does seem to work:

export default {
  locales: ['en.js'],
  defaultLocale: 'en',
  plugins: ['utc.js'],
};

Edit: same for locales apparently

jclaessens97 avatar Nov 19 '21 14:11 jclaessens97