mirror of
https://github.com/iLay1678/i-tools.git
synced 2025-05-23 19:17:42 +08:00
28 lines
528 B
TypeScript
28 lines
528 B
TypeScript
import { type NitroPreset } from "nitropack";
|
|
|
|
export default <NitroPreset>{
|
|
extends: "cloudflare",
|
|
exportConditions: ["workerd"],
|
|
output: {
|
|
dir: "{{ rootDir }}/dist",
|
|
publicDir: "{{ output.dir }}/public",
|
|
serverDir: "{{ output.dir }}/worker",
|
|
},
|
|
commands: {
|
|
preview: "npx wrangler dev",
|
|
deploy: "npx wrangler deploy",
|
|
},
|
|
wasm: {
|
|
lazy: false,
|
|
esmImport: true,
|
|
},
|
|
rollupConfig: {
|
|
output: {
|
|
entryFileNames: "index.js",
|
|
format: "esm",
|
|
exports: "named",
|
|
inlineDynamicImports: false,
|
|
},
|
|
},
|
|
};
|