mirror of
https://github.com/sussy-code/sudo-proxy.git
synced 2026-01-11 20:10:18 +00:00
Some checks failed
Linting and Testing / Run Linters (push) Has been cancelled
Linting and Testing / Build project (push) Has been cancelled
Linting and Testing / Build docker (push) Has been cancelled
Docker Publish / build (push) Has been cancelled
Release / Release (push) Has been cancelled
15 lines
305 B
TypeScript
15 lines
305 B
TypeScript
import { join } from "path";
|
|
import pkg from "./package.json";
|
|
|
|
//https://nitro.unjs.io/config
|
|
export default defineNitroConfig({
|
|
noPublicDir: true,
|
|
compatibilityDate: "2025-04-20",
|
|
srcDir: "./src",
|
|
runtimeConfig: {
|
|
version: pkg.version
|
|
},
|
|
alias: {
|
|
"@": join(__dirname, "src")
|
|
}
|
|
});
|