We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3794ab commit 1555b9fCopy full SHA for 1555b9f
1 file changed
htmltoolkit/vite.config.ts
@@ -1,15 +1,22 @@
1
import { defineConfig } from 'vite';
2
import tailwindcss from '@tailwindcss/vite';
3
import { sveltekit } from '@sveltejs/kit/vite';
4
+import { resolve } from 'path';
5
6
export default defineConfig({
7
plugins: [
- // 1) Tailwind via Vite plugin
8
tailwindcss(),
9
- // 2) SvelteKit
10
sveltekit()
11
],
12
server: {
13
allowedHosts: true
+ },
14
+ build: {
15
+ rollupOptions: {
16
+ input: {
17
+ main: resolve(__dirname, 'index.html'),
18
+ google: resolve(__dirname, 'public/google56c6a7a79ef2edde.html')
19
+ }
20
21
}
22
});
0 commit comments