18 lines
573 B
JavaScript
18 lines
573 B
JavaScript
// Welcome to your Lune config file!
|
|
// You can view documentation on Lune here:
|
|
// https://github.com/uwu/shelter/tree/main/packages/lune
|
|
// uncomment lines below to enable options, and feel free to delete this header.
|
|
import { defineConfig } from "@uwu/lune";
|
|
|
|
export default defineConfig({
|
|
// this is the directory that your plugins live in.
|
|
// repoSubDir: "plugins-live-in-here",
|
|
|
|
// this enables CSS Module support - see docs for info
|
|
// cssModules: true,
|
|
|
|
// these add extra esbuild plugins into the pipeline.
|
|
// prePlugins: [],
|
|
// postPlugins: [],
|
|
});
|