最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - Vite.js not emitting HTML files in multi page app - Stack Overflow

matteradmin6PV0评论

I have a multi page app that I'm trying to build with Vite.js (migrating from Webpack). When building the Vite + React example code I see that it emits:

  • dist/index.html
  • dist/assets/<various assets>

However, when I try to make a multi page app as shown in the docs none of the HTMLs are emitted (but the rest of the content of /assets/ is there). Why is this?

// vite.config.js excerpt:
import { defineConfig } from 'vite'
import { dirname } from 'path';
import { fileURLToPath } from 'url';

export default defineConfig({
  root: 'client',
  build: {
    outDir: 'dist',
    rollupOptions: {
      input: {
        main: dirname(fileURLToPath(import.meta.url + 'index.html')),
        login: dirname(fileURLToPath(import.meta.url + 'login.html')),
      }
    }
  },
});

I have a multi page app that I'm trying to build with Vite.js (migrating from Webpack). When building the Vite + React example code I see that it emits:

  • dist/index.html
  • dist/assets/<various assets>

However, when I try to make a multi page app as shown in the docs none of the HTMLs are emitted (but the rest of the content of /assets/ is there). Why is this?

// vite.config.js excerpt:
import { defineConfig } from 'vite'
import { dirname } from 'path';
import { fileURLToPath } from 'url';

export default defineConfig({
  root: 'client',
  build: {
    outDir: 'dist',
    rollupOptions: {
      input: {
        main: dirname(fileURLToPath(import.meta.url + 'index.html')),
        login: dirname(fileURLToPath(import.meta.url + 'login.html')),
      }
    }
  },
});
Share Improve this question asked Aug 15, 2021 at 19:44 Michael JohansenMichael Johansen 5,1367 gold badges33 silver badges51 bronze badges 4
  • remove dirname which is removing the filename only directory names will be left out. – Chandan Commented Aug 18, 2021 at 6:07
  • @Chandan If I remove dirname I get an error during vite build that says SyntaxError: Assigning to rvalue. – Michael Johansen Commented Aug 19, 2021 at 17:29
  • try new URL(./index.html, import.meta.url) as specified in the vite doc. – Chandan Commented Aug 20, 2021 at 3:30
  • Your suggestion worked @Chandan ! Put it in an answer and I'll accept it. main: new URL('./client/index.html', import.meta.url).pathname, – Michael Johansen Commented Aug 21, 2021 at 20:18
Add a ment  | 

1 Answer 1

Reset to default 4 +150

Try using the URL for file input as specified in vite doc

main: new URL('./client/index.html', import.meta.url).pathname
Post a comment

comment list (0)

  1. No comments so far