vite-plugin-html icon indicating copy to clipboard operation
vite-plugin-html copied to clipboard

如果都为index.html时,login.html无法打开都会被重定向到index.html, filename: 'index.html', template: 'index.html',

Open eatfishs opened this issue 3 years ago • 0 comments

{ minify: isBuild, pages: [ { filename: 'login.html', template: 'public/login.html', injectOptions: {}, }, { filename: 'template.html', template: 'index.html', injectOptions: { // Inject data into ejs template data: { title: VITE_GLOB_APP_TITLE, }, // Embed the generated app.config.js file tags: isBuild ? [ { tag: 'script', attrs: { src: getAppConfigSrc(), }, }, ] : [], }, }, ], }

eatfishs avatar Jun 08 '22 07:06 eatfishs