diff options
author | JeremyJamesL <jeremyluscombe@gmail.com> | 2024-12-28 16:39:18 +1100 |
---|---|---|
committer | JeremyJamesL <jeremyluscombe@gmail.com> | 2024-12-28 16:39:18 +1100 |
commit | e70da7d3a9c0241944a035c42cfc7927cd2314e5 (patch) | |
tree | 1d3e94ff448cf3d421c18ef6f24280e00b39bc4c /vite.config.js | |
parent | d0fd07ca6e183a0b76ca8268b80a8dde1d8d0df4 (diff) |
fixed positioning
Diffstat (limited to 'vite.config.js')
-rw-r--r-- | vite.config.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..82b8155 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,13 @@ +import { defineConfig } from 'vite'; +import path from 'path'; + +export default defineConfig({ + build: { + rollupOptions: { + input: { + main: path.resolve(__dirname, 'index.html'), + about: path.resolve(__dirname, 'about.html'), + }, + }, + }, +}); |