Coder Social home page Coder Social logo

Comments (1)

Barata-Ribeiro avatar Barata-Ribeiro commented on June 3, 2024

Hey there,
For that, you have a few options.
The first follows Vite.js documentation for multi-page app.

Another way is something I did in my Utility App, where the HTML files are served in the public folder. I created HTML files as if they were components that, through a JavaScript router, are rendered lazyly. It's a bit messy despite trying my best to document the classes.

Also, one method that works well, if neither is enough, is by using the following setup in the vite.config.js:

rollupOptions: {
      input: {
        main: new URL('./index.html', import.meta.url).pathname,
        about: new URL('./src/pages/about.html', import.meta.url).pathname,
        contact: new URL('./src/pages/contact.html', import.meta.url).pathname,
      },
    },

And then, in the dist folder, you'll have something like:

dist/
├── assets/
│   ├── main-HRWRAZFR.css
│   └── main-lAQRPE8r.js
├── src/
│   └── pages/
│       ├── about.html
│       └── contact.html
├── index.html
├── screenshot.png
└── vite.svg

I haven't tested this last method with a deployment, but it was built successfully and worked in the preview.

And if you need an 'automated' way of doing it, you can use a function like this in the Vite config:

/**
 * Retrieves the entry files for HTML pages within a directory.
 *
 * @param {string} directory - The source directory to traverse.
 * @returns {Object} - An object containing the entry files, where the key is the name of the file and the value is the file path.
 */
function getEntryFiles(directory) {
  const entry = {};

  function traverseDir(currentDir) {
    const files = fs.readdirSync(currentDir);

    files.forEach((file) => {
      const filePath = path.join(currentDir, file);
      const isDirectory = fs.statSync(filePath).isDirectory();

      if (isDirectory) {
        traverseDir(filePath);
      } else if (path.extname(file) === '.html' && file !== 'index.html') {
        const name = path.relative(directory, filePath).replace(/\..*$/, '');
        entry[name] = new URL(`./${filePath}`, import.meta.url).pathname;
      }
    });
  }

  traverseDir(directory);

  return entry;
}

Then, I put it in a variable:
const entryFiles = getEntryFiles('./src/pages');

And spread it in the input:

rollupOptions: {
      input: {
        main: new URL('./index.html', import.meta.url).pathname,
        ...entryFiles,
      },
    },

There are probably more efficient ways to do it, but I hope these will help you. As a starting point.

from vite-vanilla-js-template.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.