wow
This commit is contained in:
commit
794dce869c
16 changed files with 5430 additions and 0 deletions
17
vite.config.js
Normal file
17
vite.config.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
build: {
|
||||
outDir: "static/dist",
|
||||
emptyOutDir: true,
|
||||
rollupOptions: {
|
||||
input: "frontend/pass.jsx",
|
||||
output: {
|
||||
entryFileNames: "pass-app.js",
|
||||
assetFileNames: "pass-app[extname]",
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Reference in a new issue