feat: add Code of Conduct, Contribution guidelines, and License files; update HTML files to use module stylesheets

This commit is contained in:
abdullahalam123
2025-10-12 15:24:29 +05:30
parent 47f4818e25
commit 3e52545a6c
12 changed files with 339 additions and 18 deletions

View File

@@ -1,6 +1,7 @@
import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite'
import { nodePolyfills } from 'vite-plugin-node-polyfills';
import { resolve } from 'path';
export default defineConfig({
plugins: [
@@ -23,4 +24,16 @@ export default defineConfig({
optimizeDeps: {
include: ['pdfkit', 'blob-stream'],
},
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
about: resolve(__dirname, 'about.html'),
contact: resolve(__dirname, 'contact.html'),
faq: resolve(__dirname, 'faq.html'),
privacy: resolve(__dirname, 'privacy.html'),
terms: resolve(__dirname, 'terms.html'),
},
},
},
});