10 lines
153 B
TypeScript
10 lines
153 B
TypeScript
import { defineConfig } from "@farmfe/core";
|
|
|
|
export default defineConfig({
|
|
compilation: {
|
|
input: {
|
|
index: "./src/index.ts",
|
|
},
|
|
},
|
|
});
|