[Vuejs]-Vue.js / electron How to list all folder names in public folder

0👍

You can list files and read the content simply by using nodejs modules:

const fs = require('fs')
...

If the build should contain those files you have to add an entry in the vue.config.js

module.exports = {
  transpileDependencies: [
    'vuetify'
  ],
  pluginOptions: {
    electronBuilder: {
      builderOptions: {
...
         extraFiles: [
          {
            from: './data',
            to: 'data',
            filter: [
              '**/*'
            ]

But that is only needed, if you want to use another directory, I would suggest. Public is always copied, as I know.

Leave a comment