Skip to content

Commit

Permalink
Always enable nuxt icons because there're no conflicts with other ico…
Browse files Browse the repository at this point in the history
…n packages

Icon packages were introduced to provide multiple icons for the same kind of files. Here it's not the case that we need to have other icons for nuxt file names.
  • Loading branch information
PKief committed Aug 27, 2020
1 parent 76b32d9 commit a31a149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icons/fileIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export const fileIcons: FileIcons = {
{ name: 'vue', fileExtensions: ['vue'] },
{ name: 'vue-config', fileNames: ['vue.config.js', 'vue.config.ts'] },
{ name: 'vuex-store', fileExtensions: ['store.js', 'store.ts'], fileNames: ['store.js', 'store.ts'], enabledFor: [IconPack.Vuex] },
{ name: 'nuxt', fileNames: ['nuxt.config.js', 'nuxt.config.ts'], enabledFor: [IconPack.Vuex, IconPack.Vue] },
{ name: 'nuxt', fileNames: ['nuxt.config.js', 'nuxt.config.ts'] },
{ name: 'ocaml', fileExtensions: ['ml', 'mli', 'cmx'] },
{ name: 'javascript-map', fileExtensions: ['js.map', 'mjs.map'] },
{ name: 'css-map', fileExtensions: ['css.map'] },
Expand Down

0 comments on commit a31a149

Please sign in to comment.