generated from alecodes/base-template
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [],
|
|
build: {
|
|
rollupOptions: {
|
|
input: ["frontend/js/index.ts"],
|
|
},
|
|
},
|
|
});
|